Skip to content

Commit

Permalink
Fix #1683
Browse files Browse the repository at this point in the history
  • Loading branch information
sjinks committed Jan 4, 2014
1 parent c0bf030 commit c5920da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ext/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -1155,7 +1155,9 @@ PHP_METHOD(Phalcon_Debug, onUncaughtException){
PHALCON_GET_HKEY(key_server, ah2, hp2);
PHALCON_GET_HVALUE(value);

PHALCON_SCONCAT_SVSVS(html, "<tr><td class=\"key\">", key_server, "</td><td>", value, "</td></tr>");
PHALCON_INIT_NVAR(dumped_argument);
phalcon_call_method_p1(dumped_argument, this_ptr, "_getvardump", value);
PHALCON_SCONCAT_SVSVS(html, "<tr><td class=\"key\">", key_server, "</td><td>", dumped_argument, "</td></tr>");

zend_hash_move_forward_ex(ah2, &hp2);
}
Expand Down

0 comments on commit c5920da

Please sign in to comment.