Welcome to Geeklog, Anonymous Wednesday, February 12 2025 @ 04:04 pm EST
Geeklog Forums
Custom Profile
Status: offline
kyanos
Forum User
Newbie
Registered: 02/26/03
Posts: 5



14
15
Quote
Status: offline
josheli
Forum User
Newbie
Registered: 08/16/03
Posts: 7
See the thread in the Cool Hacks forum. This is the issue I was talking about with blaine.
It is because in users.php, createuser(), if a bad email is entered, it only shows the newuserform().
You need to check for a custom_userform(). Around line 535 of users.php is this:
} else {
$retval .= COM_siteHeader (\'Menu\')
. newuserform ($LANG04[18])
. COM_siteFooter();
}
You need to change to:
} else {
$retval .= COM_siteHeader (\'Menu\');
if ($_CONF[\'custom_registration\'] AND (function_exists(custom_userform))) {
$retval .= custom_userform (\'new\', \'\', $LANG04[18]);
} else {
$retval .= newuserform ($LANG04[18]);
}
$retval .= COM_siteFooter();
}
10
11
Quote
All times are EST. The time is now 04:04 pm.
- Normal Topic
- Sticky Topic
- Locked Topic
- New Post
- Sticky Topic W/ New Post
- Locked Topic W/ New Post
- View Anonymous Posts
- Able to post
- Filtered HTML Allowed
- Censored Content