diff options
author | Thies C. Arntzen <thies@php.net> | 2001-07-20 19:37:19 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2001-07-20 19:37:19 +0000 |
commit | 0453eff2b88f7548b0802bb1be1fa0ff514268e3 (patch) | |
tree | 01faaefb11d9139942af0605c1610616af8e7560 | |
parent | 11c2acc34a0a213c4d0f5d2316649338b6b89c88 (diff) | |
download | php-git-0453eff2b88f7548b0802bb1be1fa0ff514268e3.tar.gz |
fix include
-rwxr-xr-x | ext/mailparse/mailparse.c | 2 | ||||
-rw-r--r-- | ext/mbstring/mbstring.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/mailparse/mailparse.c b/ext/mailparse/mailparse.c index 541d929525..f1da1cc136 100755 --- a/ext/mailparse/mailparse.c +++ b/ext/mailparse/mailparse.c @@ -30,7 +30,7 @@ #include "php_mailparse.h" #include "mailparse_rfc822.h" #include "ext/standard/info.h" -#include "ext/standard/php_output.h" +#include "main/php_output.h" /* just in case the config check doesn't enable mbstring automatically */ #if !HAVE_MBSTRING diff --git a/ext/mbstring/mbstring.c b/ext/mbstring/mbstring.c index 46b9b05e1e..ec4206a45b 100644 --- a/ext/mbstring/mbstring.c +++ b/ext/mbstring/mbstring.c @@ -54,7 +54,7 @@ #include "ext/standard/php_string.h" #include "ext/standard/php_mail.h" #include "ext/standard/url.h" -#include "ext/standard/php_output.h" +#include "main/php_output.h" #include "ext/standard/info.h" #include "php_variables.h" |