diff -r 474f8be55943 -r ab66d6d1f1f4 plugins/SpecialUserPrefs.php --- a/plugins/SpecialUserPrefs.php Fri Dec 07 18:47:37 2007 -0500 +++ b/plugins/SpecialUserPrefs.php Wed Dec 19 22:55:40 2007 -0500 @@ -4,13 +4,13 @@ Plugin URI: http://enanocms.org/ Description: Provides the page Special:Preferences. Author: Dan Fuhry -Version: 1.0.2 +Version: 1.0.3 Author URI: http://enanocms.org/ */ /* * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between - * Version 1.0.2 + * Version 1.0.3 * Copyright (C) 2006-2007 Dan Fuhry * * This program is Free Software; you can redistribute it and/or modify it under the terms of the GNU General Public License @@ -47,7 +47,7 @@ { global $db, $session, $paths, $template, $plugins; // Common objects - if ( $paths->namespace != 'Special' || $paths->cpage['urlname_nons'] != 'Preferences' ) + if ( $paths->namespace != 'Special' || $paths->page_id != 'Preferences' ) return false; $tb .= ""; @@ -599,7 +599,7 @@ $code = $plugins->setHook('userprefs_body'); foreach ( $code as $cmd ) { - if ( eval($code) ) + if ( eval($cmd) ) $good = true; } if ( !$good )