diff options
author | Zeev Suraski <zeev@php.net> | 2000-06-12 16:07:25 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-06-12 16:07:25 +0000 |
commit | 5be482030e72b3976cc4014d1943e646c1af0a81 (patch) | |
tree | 2d3ed8fdc4b7ac6876aec3cfca68cfbb76d0ffa9 | |
parent | 968d2c5b3395aad0112520fa8d9f7610d95c9efc (diff) | |
download | php-git-5be482030e72b3976cc4014d1943e646c1af0a81.tar.gz |
Killed <?php_track_vars?>
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | main/main.c | 6 |
2 files changed, 2 insertions, 6 deletions
@@ -2,6 +2,8 @@ PHP 4.0 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2000, Version 4.0.1 +- Declared <?php_track_vars?> officially dead. It didn't work in PHP 4.0.0 + either, but now it's gone for good (Zeev) - Make convert_cyr_string() binary safe and stop it from corrupting other PHP variables. (Andi) - Added functions array_unique, array_intersect and array_diff (Stig Venaas) diff --git a/main/main.c b/main/main.c index c189f3f376..11887c199f 100644 --- a/main/main.c +++ b/main/main.c @@ -558,12 +558,6 @@ static int php_get_ini_entry_for_zend(char *name, uint name_length, zval *conten static void php_message_handler_for_zend(long message, void *data) { switch (message) { - case ZMSG_ENABLE_TRACK_VARS: { - PLS_FETCH(); - - PG(track_vars) = 1; - } - break; case ZMSG_FAILED_INCLUDE_FOPEN: { PLS_FETCH(); |