Skip to content

Commit

Permalink
fix this
Browse files Browse the repository at this point in the history
  • Loading branch information
krakjoe committed Oct 30, 2016
1 parent a63d3dc commit a55f15a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@

void php_ui_set_controls(zend_object *std, const char *name, size_t nlength, HashTable *table) {
zval obj;
zval *controls;
zval *controls, stacked;

ZVAL_OBJ(&obj, std);

controls = zend_read_property(std->ce, &obj, name, nlength, 1, controls);
controls = zend_read_property(std->ce, &obj, name, nlength, 1, &stacked);

if (!controls) {
return;
Expand Down

0 comments on commit a55f15a

Please sign in to comment.