diff options
author | foobar <sniper@php.net> | 2005-08-12 00:06:43 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-08-12 00:06:43 +0000 |
commit | 680a00ea48c3ec4ef2f7860e86159e6e15fdf3ac (patch) | |
tree | 1ebb9d974d4c1944d1e1f4e1e557b712621bad15 /sapi/apache_hooks/mod_php5.c | |
parent | 4b8025987faac9dba488392f261830fd3bd476cd (diff) | |
download | php-git-680a00ea48c3ec4ef2f7860e86159e6e15fdf3ac.tar.gz |
Nuke unused code
Diffstat (limited to 'sapi/apache_hooks/mod_php5.c')
-rw-r--r-- | sapi/apache_hooks/mod_php5.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sapi/apache_hooks/mod_php5.c b/sapi/apache_hooks/mod_php5.c index 4df43c220c..76a2a5f072 100644 --- a/sapi/apache_hooks/mod_php5.c +++ b/sapi/apache_hooks/mod_php5.c @@ -25,10 +25,6 @@ #define SIGPIPE SIGINT #endif -#if defined(ZEND_MULTIBYTE) && defined(HAVE_MBSTRING) -#include "ext/mbstring/mbstring.h" -#endif /* defined(ZEND_MULTIBYTE) && defined(HAVE_MBSTRING) */ - #undef shutdown /* {{{ Prototypes @@ -641,10 +637,6 @@ static int send_php(request_rec *r, int display_source_mode, char *filename) fh.free_filename = 0; fh.type = ZEND_HANDLE_FILENAME; -#if defined(ZEND_MULTIBYTE) && defined(HAVE_MBSTRING) - php_mbstring_set_zend_encoding(TSRMLS_C); -#endif /* defined(ZEND_MULTIBYTE) && defined(HAVE_MBSTRING) */ - zend_execute_scripts(ZEND_INCLUDE TSRMLS_CC, NULL, 1, &fh); return OK; } |