49b221f4 by Jeff Balicki

test

1 parent 19ccb389
...@@ -133,6 +133,7 @@ class UserSearch implements ArrayAccess, Iterator, Countable { ...@@ -133,6 +133,7 @@ class UserSearch implements ArrayAccess, Iterator, Countable {
133 "; 133 ";
134 134
135 $this->result = mysqli_query($wpdb->dbh, $query); 135 $this->result = mysqli_query($wpdb->dbh, $query);
136 error_log(print_r( $this->result, true));
136 $this->num_rows = mysqli_num_rows($this->result); 137 $this->num_rows = mysqli_num_rows($this->result);
137 138
138 $count_result = mysqli_query($wpdb->dbh, "SELECT FOUND_ROWS()"); 139 $count_result = mysqli_query($wpdb->dbh, "SELECT FOUND_ROWS()");
......