diff options
author | Zeev Suraski <zeev@php.net> | 1999-04-28 20:26:33 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-04-28 20:26:33 +0000 |
commit | 66476011ddb8a3bee0558df90a201cbbfee1434c (patch) | |
tree | 7a4e01f282db00b604f9445c8170515f86ecbf89 /ext/standard/basic_functions.c | |
parent | 1aaf98e54bc25eac01eaad6f2ea19e1633b6ac5d (diff) | |
download | php-git-66476011ddb8a3bee0558df90a201cbbfee1434c.tar.gz |
A step towards generalizing the INI mechanism even more
Diffstat (limited to 'ext/standard/basic_functions.c')
-rw-r--r-- | ext/standard/basic_functions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 26451856a0..6ed4496eb5 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -297,8 +297,8 @@ function_entry basic_functions[] = { PHP_INI_BEGIN() - PHP_INI_ENTRY("highlight.string", "#foobar", PHP_INI_ALL, NULL, NULL) - PHP_INI_ENTRY("test2", "testing", PHP_INI_SYSTEM, NULL, NULL) + PHP_INI_ENTRY1("highlight.string", "#foobar", PHP_INI_ALL, NULL, NULL) + PHP_INI_ENTRY1("test2", "testing", PHP_INI_SYSTEM, NULL, NULL) PHP_INI_END() |