diff options
| author | Derick Rethans <derick@php.net> | 2004-01-03 13:51:02 +0000 |
|---|---|---|
| committer | Derick Rethans <derick@php.net> | 2004-01-03 13:51:02 +0000 |
| commit | 6923a16c2651b09f70ab0670e99d7eadc319f131 (patch) | |
| tree | bbe5c7ba6bb728611cc26cbef7eeb348bdddabec /Zend/zend.c | |
| parent | 22843351bfc356ab2f845ba9b4b7035a2b2a5c0d (diff) | |
| download | php-git-6923a16c2651b09f70ab0670e99d7eadc319f131.tar.gz | |
- Fixed var_export() to show public, protected and private modifiers properly.
- Exported (un)mangle_property_name.
Diffstat (limited to 'Zend/zend.c')
| -rw-r--r-- | Zend/zend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend.c b/Zend/zend.c index 59e336c116..7907e38c0e 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -138,7 +138,7 @@ static void print_hash(HashTable *ht, int indent, zend_bool is_object TSRMLS_DC) if (is_object) { char *prop_name, *class_name; - unmangle_property_name(string_key, &class_name, &prop_name); + zend_unmangle_property_name(string_key, &class_name, &prop_name); ZEND_PUTS(prop_name); if (class_name) { if (class_name[0]=='*') { |
