]> granicus.if.org Git - php/commitdiff
- Missed this from previous commit to zend_ini.h
authorJani Taskinen <jani@php.net>
Fri, 7 Sep 2007 09:59:50 +0000 (09:59 +0000)
committerJani Taskinen <jani@php.net>
Fri, 7 Sep 2007 09:59:50 +0000 (09:59 +0000)
Zend/zend_ini.c

index 32377760263223e29c1ddbb3c36b0405094bd8b3..4de0f2f06ea28bb5c50aebef2286581f611cac68 100644 (file)
@@ -234,6 +234,11 @@ ZEND_API void zend_ini_refresh_caches(int stage TSRMLS_DC) /* {{{ */
 /* }}} */
 #endif
 
+ZEND_API int zend_alter_ini_entry(char *name, uint name_length, char *new_value, uint new_value_length, int modify_type, int stage) /* {{{ */
+{
+       return zend_alter_ini_entry_ex(name, name_length, new_value, new_value_length, modify_type, stage, 0);
+}
+
 ZEND_API int zend_alter_ini_entry_ex(char *name, uint name_length, char *new_value, uint new_value_length, int modify_type, int stage, int force_change) /* {{{ */
 {
        zend_ini_entry *ini_entry;