<br>
<table cellspacing="0" cellpadding="4" width="100%" border="0">
<tr>
- <td align="center"> Anuko Time Tracker 1.9.16.3436 | Copyright © <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
+ <td align="center"> Anuko Time Tracker 1.9.17.3437 | Copyright © <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
<a href="https://www.anuko.com/lp/tt_4.htm" target="_blank">{$i18n.footer.credits}</a> |
<a href="https://www.anuko.com/lp/tt_5.htm" target="_blank">{$i18n.footer.license}</a> |
<a href="https://www.anuko.com/lp/tt_7.htm" target="_blank">{$i18n.footer.improve}</a>
// Validate user input.
if (!ttValidString($cl_login)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.login'));
- if ($err->IsEmpty()) {
+ if ($err->no()) {
if (!ttUserHelper::getUserByLogin($cl_login)) {
// User with a specified login was not found.
// In this case, if login looks like email, try finding user by email.
}
}
- if ($err->IsEmpty()) {
+ if ($err->no()) {
$user = new ttUser($cl_login); // Note: reusing $user from initialize.php here.
// Prepare and save a temporary reference for user.