summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorScott MacVicar <scottmac@php.net>2007-12-14 14:49:15 +0000
committerScott MacVicar <scottmac@php.net>2007-12-14 14:49:15 +0000
commitd4bbbc0eabb6e871a4af527b1ca6675be9385533 (patch)
treecfd95e6cdead669d6a7572f0a96077efb4499e1a /ext
parent6f04c5169e773f7a73dc224c0cbab427c44a20aa (diff)
downloadphp-git-d4bbbc0eabb6e871a4af527b1ca6675be9385533.tar.gz
Change createFromTimestamp to setTimestamp
Diffstat (limited to 'ext')
-rw-r--r--ext/date/php_date.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/date/php_date.c b/ext/date/php_date.c
index 5b7d582c68..85f359fa1b 100644
--- a/ext/date/php_date.c
+++ b/ext/date/php_date.c
@@ -209,7 +209,7 @@ const zend_function_entry date_funcs_date[] = {
PHP_ME_MAPPING(setTime, date_time_set, NULL, 0)
PHP_ME_MAPPING(setDate, date_date_set, NULL, 0)
PHP_ME_MAPPING(setISODate, date_isodate_set, NULL, 0)
- PHP_ME_MAPPING(createFromTimestamp, date_timestamp_set, NULL, 0)
+ PHP_ME_MAPPING(setTimestamp, date_timestamp_set, NULL, 0)
{NULL, NULL, NULL}
};