tried to install this hack but when it comes to the bit in register.php at to replace this:
eval("\$avatarbit = \"".gettemplate("register_avatar")."\";");
}
} else {
$avatarbit = '';
}
with this:
eval("\$avatarbit = \"".gettemplate("register_avatar")."\";");
}
} else {
$avatarbit = '';
}
// ******************************************** \\
// *** Show times in timezone selection box *** \\
$times = array();
for ($i = -12; $i <= 12; $i += 0.5) {
$time = $i * 10;
if ($time < 0) {
$time = 'n' . substr($time, 1);
}
$times["$time"] = date($timeformat, time() + ($i - $timeoffset) * 3600); // 137 edit
}
// *** Show times in timezone selection box *** \\
// ******************************************** \\
I get a parse error? and I have also noticed that in my original register.php file I dont have these lines:
} else {
$avatarbit = '';
}
Any ideas?
|