summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2000-02-23 21:52:23 +0000
committerZeev Suraski <zeev@php.net>2000-02-23 21:52:23 +0000
commit6981775d2343867b6086b279e9e4ff31dd41d476 (patch)
tree6a8fefad450f6ee62432860e9d06e5bf6cf08c45
parentb275477b76c8040eadbec8ce866f8b9e53fea1b6 (diff)
downloadphp-git-6981775d2343867b6086b279e9e4ff31dd41d476.tar.gz
Remove obsolete code
-rw-r--r--ext/standard/basic_functions.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c
index 9b97d609f8..1ec428241a 100644
--- a/ext/standard/basic_functions.c
+++ b/ext/standard/basic_functions.c
@@ -526,10 +526,6 @@ PHP_FUNCTION(putenv)
putenv_entry pe;
PLS_FETCH();
- if (PG(safe_mode)) {
- /* check the sm_protected_env_vars table */
- }
-
pe.putenv_string = estrndup((*str)->value.str.val,(*str)->value.str.len);
pe.key = (*str)->value.str.val;
if ((p=strchr(pe.key,'='))) { /* nullify the '=' if there is one */