diff options
author | Sascha Schumann <sas@php.net> | 2000-12-08 00:12:35 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-12-08 00:12:35 +0000 |
commit | 4078b3cff9b3767a50c219ca0039c1eb4499810d (patch) | |
tree | 31628399878e82b4ff80fe399fa42014372d2f93 /ext/standard/datetime.c | |
parent | 8f74a368582a6e2094e89454e203ade0420f2efe (diff) | |
download | php-git-4078b3cff9b3767a50c219ca0039c1eb4499810d.tar.gz |
Namespace protect parse_date interface and implementation
Diffstat (limited to 'ext/standard/datetime.c')
-rw-r--r-- | ext/standard/datetime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/datetime.c b/ext/standard/datetime.c index 5029fd3c0d..c6544f253a 100644 --- a/ext/standard/datetime.c +++ b/ext/standard/datetime.c @@ -779,9 +779,9 @@ PHP_FUNCTION(strtotime) if (argc == 2) { convert_to_long_ex(z_now); now = Z_LVAL_PP(z_now); - RETURN_LONG(parse_date(Z_STRVAL_PP(z_time), &now)); + RETURN_LONG(php_parse_date(Z_STRVAL_PP(z_time), &now)); } else { - RETURN_LONG(parse_date(Z_STRVAL_PP(z_time), NULL)); + RETURN_LONG(php_parse_date(Z_STRVAL_PP(z_time), NULL)); } } /* }}} */ |