]> granicus.if.org Git - php/commitdiff
fixed name of global variables in ext/skelton.
authorRui Hirokawa <hirokawa@php.net>
Sat, 6 Oct 2001 04:39:37 +0000 (04:39 +0000)
committerRui Hirokawa <hirokawa@php.net>
Sat, 6 Oct 2001 04:39:37 +0000 (04:39 +0000)
ext/skeleton/skeleton.c

index 1faa880f7b6bdc321e8ceda29ecfbde21dcc45d0..ec23799f0f3c66f18909821ee9e5e2dea1ee8e3a 100644 (file)
@@ -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()
 */
 /* }}} */