*** empty log message ***

This commit is contained in:
sebastian 2005-02-28 10:15:29 +00:00
parent f807c93626
commit c351c49c7c
9 changed files with 43 additions and 34 deletions

View file

@ -279,10 +279,11 @@ class uiBase
function _twoDigits($num)
{
if (strlen($num)<2)
return ("0$num");
else
return $num;
if (strlen($num) == 1)
return "0$num";
if (strlen($num) == 0)
return '00';
return $num;
}