]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/common.lib.php
Initial work done to support negative durations, some issues remain.
[timetracker.git] / WEB-INF / lib / common.lib.php
index e2950753ec4e208475822050253aa0f122cf763b..747f3e016d63a09f271754e3a1c5313e5c854b78 100644 (file)
@@ -143,11 +143,6 @@ function time_to_decimal($val) {
   return $decimalTime;
 }
 
-function sec_to_time_fmt_hm($sec)
-{
-  return sprintf("%d:%02d", $sec / 3600, $sec % 3600 / 60);
-}
-
 function magic_quotes_off()
 {
   $_POST = array_map('stripslashes_deep', $_POST);