mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
fix: escape characters for min
in format_duration_symbol
This commit is contained in:
parent
5e5e9b2b3f
commit
3b6722a42b
@ -183,9 +183,9 @@ if (! function_exists('format_duration_symbol')) {
|
||||
}
|
||||
if ($seconds < 36000) {
|
||||
// < 10 hours: returns H:MM:SS
|
||||
return ltrim(gmdate('h\h i\min s\s', $seconds), '0');
|
||||
return ltrim(gmdate('h\h i\m\i\n s\s', $seconds), '0');
|
||||
}
|
||||
return gmdate('h\h i\min s\s', $seconds);
|
||||
return gmdate('h\h i\m\i\n s\s', $seconds);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user