bjori Mon May 28 10:46:21 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/reflection php_reflection.c
Log:
MFH: fix logic
http://cvs.php.net/viewvc.cgi/php-src/ext/reflection/php_reflection.c?r1=1.164.2.33.2.37&r2=1.164.2.33.2.38&diff_format=u
Index: php-src/ext/reflection/php_reflection.c
diff -u php-src/ext/reflection/php_reflection.c:1.164.2.33.2.37
php-src/ext/reflection/php_reflection.c:1.164.2.33.2.38
--- php-src/ext/reflection/php_reflection.c:1.164.2.33.2.37 Thu Apr 12
18:39:46 2007
+++ php-src/ext/reflection/php_reflection.c Mon May 28 10:46:21 2007
@@ -20,7 +20,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_reflection.c,v 1.164.2.33.2.37 2007/04/12 18:39:46 johannes Exp $
*/
+/* $Id: php_reflection.c,v 1.164.2.33.2.38 2007/05/28 10:46:21 bjori Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -837,7 +837,7 @@
if (number == ini_entry->module_number) {
string_printf(str, " %sEntry [ %s <", indent,
ini_entry->name);
- if (ini_entry->modifiable & ZEND_INI_ALL) {
+ if (ini_entry->modifiable == ZEND_INI_ALL) {
string_printf(str, "ALL");
} else {
if (ini_entry->modifiable & ZEND_INI_USER) {
@@ -4893,7 +4893,7 @@
php_info_print_table_start();
php_info_print_table_header(2, "Reflection", "enabled");
- php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v
1.164.2.33.2.37 2007/04/12 18:39:46 johannes Exp $");
+ php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v
1.164.2.33.2.38 2007/05/28 10:46:21 bjori Exp $");
php_info_print_table_end();
} /* }}} */
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php