Skip to content

Commit 0ad8523

Browse files
committed
add stage for .htaccess
1 parent a019d99 commit 0ad8523

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Zend/zend_ini.h

+1
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ END_EXTERN_C()
189189
#define ZEND_INI_STAGE_ACTIVATE (1<<2)
190190
#define ZEND_INI_STAGE_DEACTIVATE (1<<3)
191191
#define ZEND_INI_STAGE_RUNTIME (1<<4)
192+
#define ZEND_INI_STAGE_HTACCESS (1<<5)
192193

193194
/* INI parsing engine */
194195
typedef void (*zend_ini_parser_cb_t)(zval *arg1, zval *arg2, int callback_type, void *arg);

main/php_ini.h

+1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ END_EXTERN_C()
6565
#define PHP_INI_STAGE_ACTIVATE ZEND_INI_STAGE_ACTIVATE
6666
#define PHP_INI_STAGE_DEACTIVATE ZEND_INI_STAGE_DEACTIVATE
6767
#define PHP_INI_STAGE_RUNTIME ZEND_INI_STAGE_RUNTIME
68+
#define PHP_INI_STAGE_HTACCESS ZEND_INI_STAGE_HTACCESS
6869

6970
#define php_ini_boolean_displayer_cb zend_ini_boolean_displayer_cb
7071
#define php_ini_color_displayer_cb zend_ini_color_displayer_cb

0 commit comments

Comments
 (0)