]> granicus.if.org Git - php/commitdiff
MFB53: Fix for get_defined_constants()
authorIlia Alshanetsky <iliaa@php.net>
Mon, 16 Mar 2009 00:39:09 +0000 (00:39 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Mon, 16 Mar 2009 00:39:09 +0000 (00:39 +0000)
Zend/zend_builtin_functions.c

index b80ce5e547becb225f2fd5e7513296468f3c661b..0dde8b1bc54fd18e4647870fb36b3caa04165837 100644 (file)
@@ -1617,7 +1617,8 @@ ZEND_FUNCTION(get_defined_constants)
                module_names[0] = "internal";
                zend_hash_internal_pointer_reset_ex(&module_registry, &pos);
                while (zend_hash_get_current_data_ex(&module_registry, (void *) &module, &pos) != FAILURE) {
-                       module_names[i++] = module->name;
+                       module_names[module->module_number] = module->name;
+                       i++;
                        zend_hash_move_forward_ex(&module_registry, &pos);
                }
                module_names[i] = "user";