Skip to content

Commit 090e6f3

Browse files
author
Till Brehm
committed
Merge branch 'patch-4' into 'master'
Update simplepie.inc.php See merge request ispconfig/ispconfig3!712
2 parents 6d15c0f + b2f74d0 commit 090e6f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/lib/classes/simplepie.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13338,7 +13338,7 @@ function date_w3cdtf($date)
1333813338
}
1333913339

1334013340
// Convert the number of seconds to an integer, taking decimals into account
13341-
$second = round($match[6] + $match[7] / pow(10, strlen($match[7])));
13341+
$second = round($match[6] + $match[7] / pow(10, (int)strlen($match[7])));
1334213342

1334313343
return gmmktime($match[4], $match[5], $second, $match[2], $match[3], $match[1]) - $timezone;
1334413344
}

0 commit comments

Comments
 (0)