Made properties return properly.
authorDerick Rethans <github@derickrethans.nl>
Thu, 7 Jul 2011 12:06:13 +0000 (13:06 +0100)
committerDerick Rethans <github@derickrethans.nl>
Thu, 7 Jul 2011 12:06:13 +0000 (13:06 +0100)
twig.c

diff --git a/twig.c b/twig.c
index 02a95c7..ee98590 100644 (file)
--- a/twig.c
+++ b/twig.c
@@ -656,7 +656,8 @@ PHP_FUNCTION(twig_template_get_attributes)
                        }
 
                        convert_to_string(item);
-                       return_value = TWIG_PROPERTY(object, Z_STRVAL_P(item)); // this is obviously wrong
+                       ret = TWIG_PROPERTY(object, Z_STRVAL_P(item)); // this is obviously wrong
+                       RETVAL_ZVAL(ret, 1, 0);
                }
        }
 /*