diff options
| author | Stefan | 2010-03-24 15:18:48 +0100 |
|---|---|---|
| committer | Stefan | 2010-03-24 15:18:48 +0100 |
| commit | 29e8badaeb13eaff46c00a8b543ce21710f2ac10 (patch) | |
| tree | 75c02bd80c435cbbae5f74cf5dad53c4d5e54d81 | |
| parent | 439e118181947cb796ee9a83af85b2931fb8aaa5 (diff) | |
Fix cut and paste error
| -rw-r--r-- | ex_imp.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -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)|| |
