diff options
Diffstat (limited to 'ext/wddx/tests/bug27287.phpt')
-rw-r--r-- | ext/wddx/tests/bug27287.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/wddx/tests/bug27287.phpt b/ext/wddx/tests/bug27287.phpt index 72ac317aa0..f709b71a99 100644 --- a/ext/wddx/tests/bug27287.phpt +++ b/ext/wddx/tests/bug27287.phpt @@ -4,12 +4,12 @@ Bug #27287 (segfault with deserializing object data) <?php if (!extension_loaded("wddx")) print "skip"; ?> --FILE-- <?php - + class foo { } $foo = new foo(); $foo->abc = 'def'; - + $string = wddx_serialize_value($foo); $bar = wddx_deserialize($string); |