*** empty log message ***
This commit is contained in:
parent
f807c93626
commit
c351c49c7c
9 changed files with 43 additions and 34 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue