bjori           Mon May 28 10:34:37 2007 UTC

  Modified files:              
    /php-src/ext/reflection     php_reflection.c 
  Log:
  Fix logic
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/reflection/php_reflection.c?r1=1.274&r2=1.275&diff_format=u
Index: php-src/ext/reflection/php_reflection.c
diff -u php-src/ext/reflection/php_reflection.c:1.274 
php-src/ext/reflection/php_reflection.c:1.275
--- php-src/ext/reflection/php_reflection.c:1.274       Sat Mar 17 23:38:41 2007
+++ php-src/ext/reflection/php_reflection.c     Mon May 28 10:34:37 2007
@@ -20,7 +20,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: php_reflection.c,v 1.274 2007/03/17 23:38:41 johannes Exp $ */
+/* $Id: php_reflection.c,v 1.275 2007/05/28 10:34:37 bjori Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -845,7 +845,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) {
@@ -4987,7 +4987,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.274 
2007/03/17 23:38:41 johannes Exp $");
+       php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.275 
2007/05/28 10:34:37 bjori Exp $");
 
        php_info_print_table_end();
 } /* }}} */

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to