diff options
author | Kalle Sommer Nielsen <kalle@php.net> | 2010-09-27 01:19:57 +0000 |
---|---|---|
committer | Kalle Sommer Nielsen <kalle@php.net> | 2010-09-27 01:19:57 +0000 |
commit | a3161aa091264561ac07cabb15f506e2a80d1d28 (patch) | |
tree | e7067ac01a79a2e48821cadf69173915f9049585 /UPGRADING.INTERNALS | |
parent | a531b5f0d273bdac611d6b96080332a0700b9180 (diff) | |
download | php-git-a3161aa091264561ac07cabb15f506e2a80d1d28.tar.gz |
Removed a TSRMLS_FETCH() call in php_idate() in favor of the TSRMLS macros
Diffstat (limited to 'UPGRADING.INTERNALS')
-rw-r--r-- | UPGRADING.INTERNALS | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS index bfbfa533e0..a4e3c83b9c 100644 --- a/UPGRADING.INTERNALS +++ b/UPGRADING.INTERNALS @@ -99,4 +99,8 @@ Use emalloc, emalloc_rel, efree or efree_rel instead. . php_get_current_user PHPAPI php_get_current_user(TSRMLS_D) - Call: char *user = php_get_current_user(TSRMLS_C);
\ No newline at end of file + Call: char *user = php_get_current_user(TSRMLS_C); + +. php_idate + PHPAPI php_idate(char format, time_t ts, int localtime TSRMLS_DC) + Call: int ret = php_idate(format, ts, localtime TSRMLS_CC)
\ No newline at end of file |