i've installed V3.0.6
following code in register.php
PHP Code:
$errors = array();
// check username does not contain semi-colons
if (preg_match('/(?<!&#[0-9]{3}|&#[0-9]{4}|&#[0-9]{5});/', $_POST['username']))
{
//eval(print_standard_error('error_username_semicolon'));
eval('$errors[10] = "' . fetch_phrase('username_semicolon', PHRASETYPEID_ERROR) . '";');
}
Is that the same or what?