Users may get the I Don`t Like You message if they have nicks like
[|m_|33t]
(My|am3NiK)
and similar.
The admin might get it if using Nuke 6.0 with the security fixes applied.
open mainfile.php and change
|
Code:
|
if (ereg("\\'",base64_decode($admin)) || ereg("\\'",base64_decode($user))) {
die("I don't like you");
} |
to
|
Code:
|
if (preg_match("\\'",base64_decode($admin)) || preg_match("\\'",base64_decode($user))) {
die("I don't like you");
} |
If that fails, comment out the lines.