2012-06-20 Hirofumi Kosaka <kosaka@rworks.jp>
* include/functions.php: Changed ambiguous time representation "MM:SS minutes", that can read 'MM hours SS minute', to "MM minutes SS seconds". Merged from 4.0.2 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6603 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
50fc62147b
commit
df60fb5c34
|
@ -1,3 +1,10 @@
|
|||
2012-06-20 Hirofumi Kosaka <kosaka@rworks.jp>
|
||||
|
||||
* include/functions.php: Changed ambiguous time representation
|
||||
"MM:SS minutes", that can read 'MM hours SS minute', to
|
||||
"MM minutes SS seconds".
|
||||
Merged from 4.0.2
|
||||
|
||||
2012-06-19 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* general/header.php: Add hint to explain the use of
|
||||
|
|
|
@ -509,7 +509,7 @@ function human_time_description_raw ($seconds, $exactly = false, $units = 'large
|
|||
if ($seconds == 0)
|
||||
return $minutes.' ' . $minutesString;
|
||||
$seconds = sprintf ("%02d", $seconds);
|
||||
return $minutes.':'.$seconds.' ' . $minutesString;
|
||||
return $minutes.' '. $minutesString . ' ' .$seconds.' ' . $secondsString;
|
||||
}
|
||||
|
||||
if ($seconds < 86400)
|
||||
|
|
Loading…
Reference in New Issue