Bug noted by Timophey <bcloud@mail.ru>
+Ver 1.30:
+* Add limit of results returned in accounting.php3
+* Fix a bug in time2strclock() in lib/functions.php3. Seconds ammount more than 9 would not show.
+ Bug noted by Timophey <bcloud@mail.ru>
Ver 1.29:
* Add general_ld_library_path directive and set LD_LIBRARY_PATH accordingly (used in snmpfinger and
radaclient).
$str["min"] = "$m";
$time = $time % 60;
}
- if ($time)
+ if ($time){
if ($time < 10)
$time = "0" . $time;
+ }
else
$time = "00";
$str["sec"] = "$time";