--- a/plugins/SpecialRecentChanges.php Thu Jun 26 21:36:32 2008 -0400
+++ b/plugins/SpecialRecentChanges.php Mon Jun 30 17:20:02 2008 -0400
@@ -24,15 +24,18 @@
global $db, $session, $paths, $template, $plugins; // Common objects
-$plugins->attachHook('session_started', '
+$plugins->attachHook('session_started', 'SpecialRecentChanges_paths_init();');
+
+function SpecialRecentChanges_paths_init()
+{
global $paths;
- $paths->add_page(Array(
- \'name\'=>\'specialpage_recent_changes\',
- \'urlname\'=>\'RecentChanges\',
- \'namespace\'=>\'Special\',
- \'special\'=>0,\'visible\'=>1,\'comments_on\'=>0,\'protected\'=>1,\'delvotes\'=>0,\'delvote_ips\'=>\'\',
- ));
- ');
+ $paths->add_page(Array(
+ 'name'=>'specialpage_recent_changes',
+ 'urlname'=>'RecentChanges',
+ 'namespace'=>'Special',
+ 'special'=>0,'visible'=>1,'comments_on'=>0,'protected'=>1,'delvotes'=>0,'delvote_ips'=>'',
+ ));
+}
function page_Special_RecentChanges()
{