diff options
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/cgi/cgi_main.c | 2 | ||||
-rw-r--r-- | sapi/cli/php_cli.c | 2 | ||||
-rw-r--r-- | sapi/milter/php_milter.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index 22463ad55c..c5f722e04c 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -1691,7 +1691,7 @@ consult the installation file that came with this distribution, or visit \n\ break; case 'e': /* enable extended info output */ - CG(extended_info) = 1; + CG(compiler_options) |= ZEND_COMPILE_EXTENDED_INFO; break; case 'f': /* parse file */ diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 3392fb0b22..f36f84427a 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -824,7 +824,7 @@ int main(int argc, char *argv[]) break; case 'e': /* enable extended info output */ - CG(extended_info) = 1; + CG(compiler_options) |= ZEND_COMPILE_EXTENDED_INFO; break; case 'F': diff --git a/sapi/milter/php_milter.c b/sapi/milter/php_milter.c index e0a3c60a1c..aa8e59d01b 100644 --- a/sapi/milter/php_milter.c +++ b/sapi/milter/php_milter.c @@ -1033,7 +1033,7 @@ int main(int argc, char *argv[]) break; case 'e': /* enable extended info output */ - CG(extended_info) = 1; + CG(compiler_options) |= ZEND_COMPILE_EXTENDED_INFO; break; case 'f': /* parse file */ |