summaryrefslogtreecommitdiff
path: root/main/php_ini.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-05-11 16:52:58 +0000
committerZeev Suraski <zeev@php.net>1999-05-11 16:52:58 +0000
commitba88c0c47c1dcbf20a920ccef0e45c7d1d277905 (patch)
treeeac48b58f7f445136ccc9700bc109689d4ebbe9d /main/php_ini.c
parent24dff20afa4e04451a9cab24aa1dcc168ceb3947 (diff)
downloadphp-git-ba88c0c47c1dcbf20a920ccef0e45c7d1d277905.tar.gz
* Move unclean_shutdown from PHP to Zend.
* The Master/Local headers in the phpinfo() table were reversed. * Fix a gpc bug
Diffstat (limited to 'main/php_ini.c')
-rw-r--r--main/php_ini.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_ini.c b/main/php_ini.c
index 56f48f1c66..b96188d525 100644
--- a/main/php_ini.c
+++ b/main/php_ini.c
@@ -338,7 +338,7 @@ PHPAPI void display_ini_entries(zend_module_entry *module)
module_number = 0;
}
PUTS("<table border=5 width=\"600\">\n");
- php_info_print_table_header(3, "Directive", "Master Value", "Local Value");
+ php_info_print_table_header(3, "Directive", "Local Value", "Master Value");
zend_hash_apply_with_argument(&known_directives, (int (*)(void *, void *)) php_ini_displayer, (void *) module_number);
PUTS("</table>\n");
}