diff options
Diffstat (limited to 'main/php_variables.c')
-rw-r--r-- | main/php_variables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_variables.c b/main/php_variables.c index 0bbabcdfaf..c22859f957 100644 --- a/main/php_variables.c +++ b/main/php_variables.c @@ -534,7 +534,7 @@ static zend_always_inline int valid_environment_name(const char *name, const cha const char *s; for (s = name; s < end; s++) { - if (*s == ' ' | *s == '.' || *s == '[') { + if (*s == ' ' || *s == '.' || *s == '[') { return 0; } } |