Skip to content

Commit

Permalink
- update DateTime object can be instance of DateTimeImmutable since P…
Browse files Browse the repository at this point in the history
…HP5.5 #75
  • Loading branch information
uwetews committed Aug 1, 2015
1 parent c5cdd90 commit 3d2a15b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions change_log.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
 ===== 3.1.28-dev===== (xx.xx.2015)
01.08.2015
- update DateTime object can be instance of DateTimeImmutable since PHP5.5 https://github.com/smarty-php/smarty/pull/75

31.07.2015
- optimize {foreach} and {section} compiler

Expand Down
4 changes: 2 additions & 2 deletions libs/plugins/shared.make_timestamp.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ function smarty_make_timestamp($string)
if (empty($string)) {
// use "now":
return time();
} elseif ($string instanceof DateTime) {
return $string->getTimestamp();
} elseif ($string instanceof DateTime || (interface_exists('DateTimeInterface', false) && $string instanceof DateTimeInterface)) {
return (int) $string->format('U'); // PHP 5.2 BC
} elseif (strlen($string) == 14 && ctype_digit($string)) {
// it is mysql timestamp format of YYYYMMDDHHMMSS?
return mktime(substr($string, 8, 2), substr($string, 10, 2), substr($string, 12, 2),
Expand Down

0 comments on commit 3d2a15b

Please sign in to comment.