summaryrefslogtreecommitdiff
path: root/zend/super.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zend/super.cpp')
-rw-r--r--zend/super.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/zend/super.cpp b/zend/super.cpp
index c25efeb..a2fa0a9 100644
--- a/zend/super.cpp
+++ b/zend/super.cpp
@@ -40,7 +40,7 @@ Value Super::operator[](const std::string &key)
Value value(PG(http_globals)[_index]);
// pass on the call
- return value[key];
+ return value.get(key);
}
/**
@@ -61,7 +61,7 @@ Value Super::operator[](const char *key)
Value value(PG(http_globals)[_index]);
// pass on the call
- return value[key];
+ return value.get(key);
}
/**