diff options
author | svncommit <devs@roundcube.net> | 2007-03-30 06:59:33 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2007-03-30 06:59:33 +0000 |
commit | bd495968426ba49d1c0340488ae7820f631323ff (patch) | |
tree | b8a6fcddfc303c54d71d8a63723dbf56fd1b03d1 | |
parent | 7429840e83b4210f79608b68a4c8f545a586d9d3 (diff) |
Fix cache lifetime parsing, closes #1484306.
-rw-r--r-- | program/include/rcube_shared.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_shared.inc b/program/include/rcube_shared.inc index 558fbf7d9..0d502f81c 100644 --- a/program/include/rcube_shared.inc +++ b/program/include/rcube_shared.inc @@ -1565,7 +1565,7 @@ function get_offset_time($offset_str, $factor=1) $amount *= 24; case 'h': $amount *= 60; - case 'h': + case 'm': $amount *= 60; case 's': $ts += $amount * $factor; |