diff options
author | Rui Hirokawa <hirokawa@php.net> | 2001-10-06 04:39:37 +0000 |
---|---|---|
committer | Rui Hirokawa <hirokawa@php.net> | 2001-10-06 04:39:37 +0000 |
commit | 8b8d3d35c264176170563c00a937ca4311e95c78 (patch) | |
tree | df3de126e476e0c5ef615926764eacda19cdf2d9 /ext | |
parent | f2fbed70fdb0fa4b399bd6ebb1d9bdaf1fdb25d6 (diff) | |
download | php-git-8b8d3d35c264176170563c00a937ca4311e95c78.tar.gz |
fixed name of global variables in ext/skelton.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/skeleton/skeleton.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/skeleton/skeleton.c b/ext/skeleton/skeleton.c index 1faa880f7b..ec23799f0f 100644 --- a/ext/skeleton/skeleton.c +++ b/ext/skeleton/skeleton.c @@ -49,8 +49,8 @@ ZEND_GET_MODULE(extname) */ /* Remove comments and fill if you need to have entries in php.ini PHP_INI_BEGIN() - STD_PHP_INI_ENTRY("extname.value", "42", PHP_INI_ALL, OnUpdateInt, global_value, zend_extname_globals, extname_globals) - STD_PHP_INI_ENTRY("extname.string", "foobar", PHP_INI_ALL, OnUpdateString, global_string, zend_extname_globals, extname_globals) + STD_PHP_INI_ENTRY("extname.global_value", "42", PHP_INI_ALL, OnUpdateInt, global_value, zend_extname_globals, extname_globals) + STD_PHP_INI_ENTRY("extname.global_string", "foobar", PHP_INI_ALL, OnUpdateString, global_string, zend_extname_globals, extname_globals) PHP_INI_END() */ /* }}} */ |