Use strtolower on the method names and add them as associative keys so that they are found.

This makes method calls work.
This commit is contained in:
Derick Rethans
2011-07-08 12:50:26 +01:00
parent 0b6cefbb6a
commit 9096e3f734
+2 -1
View File
@@ -445,8 +445,9 @@ char *TWIG_GET_CLASS_NAME(zval *object)
static void twig_add_method_to_class(zend_function *mptr TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key)
{
zval *retval = va_arg(args, zval*);
char *item = php_strtolower(mptr->common.function_name, strlen(mptr->common.function_name));
add_next_index_string(retval, mptr->common.function_name, 1);
add_assoc_string(retval, item, item, 1);
}
static int twig_add_property_to_class(zend_property_info *pptr TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key)