1
0
Fork 0
mirror of git://git.psyced.org/git/psyced synced 2024-08-15 03:25:10 +00:00
This commit is contained in:
psyc://psyced.org/~lynX 2010-02-27 11:34:19 +01:00
parent d63e37eb89
commit e9d5dbbe72
3 changed files with 6 additions and 5 deletions

View file

@ -136,10 +136,11 @@ object find_psyc_object(array(mixed) u) {
case '~':
#ifdef _flag_enable_module_microblogging
if (u[UChannel]) {
t = lower_case(r + "#" + u[UChannel]);
t = lower_case(r +"#"+ u[UChannel]);
r = PLACE_PATH + t;
if (o = find_object(r)) break;
unless (t = legal_name(t)) break;
unless (t = legal_name(t, 1)) break;
// untreated catch? interesting..
catch(o = r -> load(t));
}
#endif