Skip to content

Commit

Permalink
Merge pull request #1709 from dreamsxin/1683_1.3.0
Browse files Browse the repository at this point in the history
Fix bug #1683
  • Loading branch information
Phalcon committed Dec 19, 2013
2 parents 1908bd9 + 17ce14f commit b87304f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ext/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -1168,8 +1168,10 @@ 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 b87304f

Please sign in to comment.