tony2001                Mon Aug  6 12:54:35 2007 UTC

  Modified files:              
    /php-src/sapi/apache        mod_php.c 
  Log:
  fix build
  
  
http://cvs.php.net/viewvc.cgi/php-src/sapi/apache/mod_php.c?r1=1.4&r2=1.5&diff_format=u
Index: php-src/sapi/apache/mod_php.c
diff -u php-src/sapi/apache/mod_php.c:1.4 php-src/sapi/apache/mod_php.c:1.5
--- php-src/sapi/apache/mod_php.c:1.4   Fri Aug  3 01:40:05 2007
+++ php-src/sapi/apache/mod_php.c       Mon Aug  6 12:54:35 2007
@@ -17,7 +17,7 @@
    | PHP 4.0 patches by Zeev Suraski <[EMAIL PROTECTED]>                      |
    +----------------------------------------------------------------------+
  */
-/* $Id: mod_php.c,v 1.4 2007/08/03 01:40:05 stas Exp $ */
+/* $Id: mod_php.c,v 1.5 2007/08/06 12:54:35 tony2001 Exp $ */
 
 #include "php_apache_http.h"
 #include "http_conf_globals.h"
@@ -541,7 +541,7 @@
  */
 static int php_apache_alter_ini_entries(php_per_dir_entry *per_dir_entry 
TSRMLS_DC)
 {
-       zend_alter_ini_entry(per_dir_entry->key, per_dir_entry->key_length+1, 
per_dir_entry->value, per_dir_entry->value_length, per_dir_entry->type, 
data->htaccess?PHP_INI_STAGE_HTACCESS:PHP_INI_STAGE_ACTIVATE);
+       zend_alter_ini_entry(per_dir_entry->key, per_dir_entry->key_length+1, 
per_dir_entry->value, per_dir_entry->value_length, per_dir_entry->type, 
per_dir_entry->htaccess?PHP_INI_STAGE_HTACCESS:PHP_INI_STAGE_ACTIVATE);
        return 0;
 }
 /* }}} */

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to