diff options
-rwxr-xr-x | ext/sqlite/tests/sqlite_oo_031.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite/tests/sqlite_oo_031.phpt b/ext/sqlite/tests/sqlite_oo_031.phpt index 80a2138cbf..6a340c011d 100755 --- a/ext/sqlite/tests/sqlite_oo_031.phpt +++ b/ext/sqlite/tests/sqlite_oo_031.phpt @@ -77,7 +77,7 @@ class SqliteNestedset implements RecursiveIterator function current() { - return (string)$this->entry; + return $this->entry->__toString(); } function key() |