summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan2010-03-24 15:18:48 +0100
committerStefan2010-03-24 15:18:48 +0100
commit29e8badaeb13eaff46c00a8b543ce21710f2ac10 (patch)
tree75c02bd80c435cbbae5f74cf5dad53c4d5e54d81
parent439e118181947cb796ee9a83af85b2931fb8aaa5 (diff)
Fix cut and paste error
-rw-r--r--ex_imp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ex_imp.c b/ex_imp.c
index 0241ca5..a6fd0c3 100644
--- a/ex_imp.c
+++ b/ex_imp.c
@@ -489,7 +489,7 @@ static int copy_request_variable(void *pDest, int num_args, va_list args, zend_h
489 zval_dtor(&new_key); 489 zval_dtor(&new_key);
490 return 0; 490 return 0;
491 } 491 }
492 } else if (new_key[0] == '_') { 492 } else if (Z_STRVAL(new_key)[0] == '_') {
493 if ((strcmp(Z_STRVAL(new_key), "_COOKIE")==0)|| 493 if ((strcmp(Z_STRVAL(new_key), "_COOKIE")==0)||
494 (strcmp(Z_STRVAL(new_key), "_ENV")==0)|| 494 (strcmp(Z_STRVAL(new_key), "_ENV")==0)||
495 (strcmp(Z_STRVAL(new_key), "_FILES")==0)|| 495 (strcmp(Z_STRVAL(new_key), "_FILES")==0)||