| Antony Dovgal 2005-10-20, 6:55 pm |
| tony2001 Thu Oct 20 12:47:19 2005 EDT
Modified files: (Branch: PHP_5_1)
/ZendEngine2 zend_reflection_api.c
Log:
MFH: fix copy/paste typo
http://cvs.php.net/diff.php/ZendEng...=1.164.2.8&ty=u
Index: ZendEngine2/zend_reflection_api.c
diff -u ZendEngine2/zend_reflection_api.c:1.164.2.7 ZendEngine2/zend_reflection_api.c:1.164.2.8
--- ZendEngine2/zend_reflection_api.c:1.164.2.7 Thu Oct 6 18:46:33 2005
+++ ZendEngine2/zend_reflection_api.c Thu Oct 20 12:47:18 2005
@@ -19,7 +19,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_reflection_api.c,v 1.164.2.7 2005/10/06 22:46:33 helly Exp $ */
+/* $Id: zend_reflection_api.c,v 1.164.2.8 2005/10/20 16:47:18 tony2001 Exp $ */
#include "zend.h"
#include "zend_API.h"
#include "zend_exceptions.h"
@@ -753,7 +753,7 @@
}
}
- string_printf(str, "> ]\n", indent, ini_entry->name);
+ string_printf(str, "> ]\n");
string_printf(str, " %s Current = '%s'\n", indent, ini_entry->value ? ini_entry->value : "");
if (ini_entry->modified) {
string_printf(str, " %s Default = '%s'\n", indent, ini_entry->orig_value ? ini_entry->orig_value : "");
|