diff options
author | Zeev Suraski <zeev@php.net> | 2001-10-23 01:18:54 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-10-23 01:18:54 +0000 |
commit | c767809b2f28f3f09db2bf450ce2e2c5ca73d7f6 (patch) | |
tree | 8dd6154211f715b82b570330313320f1aed57fcb | |
parent | c2da7dc4a957c41ce920a125417fd4fd6380f705 (diff) | |
download | php-git-c767809b2f28f3f09db2bf450ce2e2c5ca73d7f6.tar.gz |
Prolong the death of dl() for a little while longer.
-rw-r--r-- | ext/standard/dl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/dl.c b/ext/standard/dl.c index 185c42df69..6e98e0834a 100644 --- a/ext/standard/dl.c +++ b/ext/standard/dl.c @@ -76,6 +76,7 @@ PHP_FUNCTION(dl) php_error(E_ERROR, "Dynamically loaded extensions aren't allowed when running in SAFE MODE."); } else { php_dl(*file, MODULE_TEMPORARY, return_value TSRMLS_CC); + EG(full_tables_cleanup) = 1; } } |