diff -r 261f367623af -r 77c75179bb95 plugins/SpecialUserFuncs.php --- a/plugins/SpecialUserFuncs.php Tue Sep 04 12:52:23 2007 -0400 +++ b/plugins/SpecialUserFuncs.php Thu Sep 06 23:03:51 2007 -0400 @@ -67,14 +67,14 @@ \'name\'=>\'Activate user account\', \'urlname\'=>\'ActivateAccount\', \'namespace\'=>\'Special\', - \'special\'=>0,\'visible\'=>0,\'comments_on\'=>0,\'protected\'=>1,\'delvotes\'=>0,\'delvote_ips\'=>\'\', + \'special\'=>0,\'visible\'=>1,\'comments_on\'=>0,\'protected\'=>1,\'delvotes\'=>0,\'delvote_ips\'=>\'\', )); $paths->add_page(Array( \'name\'=>\'Captcha\', \'urlname\'=>\'Captcha\', \'namespace\'=>\'Special\', - \'special\'=>0,\'visible\'=>0,\'comments_on\'=>0,\'protected\'=>1,\'delvotes\'=>0,\'delvote_ips\'=>\'\', + \'special\'=>0,\'visible\'=>1,\'comments_on\'=>0,\'protected\'=>1,\'delvotes\'=>0,\'delvote_ips\'=>\'\', )); $paths->add_page(Array( @@ -828,9 +828,9 @@ { global $db, $session, $paths, $template, $plugins; // Common objects $user = $paths->getParam(0); - if(!$user) die_friendly('Account activation error', '

The URL was incorrect.

'); + if(!$user) die_friendly('Account activation error', '

This page can only be accessed using links sent to users via e-mail.

'); $key = $paths->getParam(1); - if(!$key) die_friendly('Account activation error', '

The URL was incorrect.

'); + if(!$key) die_friendly('Account activation error', '

This page can only be accessed using links sent to users via e-mail.

'); $s = $session->activate_account(str_replace('_', ' ', $user), $key); if($s > 0) die_friendly('Activation successful', '

Your account is now active. Thank you for registering.

'); else die_friendly('Activation failed', '

The activation key was probably incorrect.

');