Browse Source
"INT" configuration values must be of type long
PHP-4.0.5
Sascha Schumann
27 years ago
1 changed files with
4 additions and
4 deletions
-
ext/standard/assert.c
|
|
|
@ -25,10 +25,10 @@ |
|
|
|
#include "php_ini.h" |
|
|
|
|
|
|
|
typedef struct { |
|
|
|
int active; |
|
|
|
int bail; |
|
|
|
int warning; |
|
|
|
int quiet_eval; |
|
|
|
long active; |
|
|
|
long bail; |
|
|
|
long warning; |
|
|
|
long quiet_eval; |
|
|
|
char *default_callback; |
|
|
|
char *callback; |
|
|
|
} php_assert_globals; |
|
|
|
|