Browse Source

Fixed bug: ev output was buffered instead of directly displayed

pull/661/head
Bob Weinand 12 years ago
parent
commit
7ab1c07a51
  1. 4
      phpdbg.c

4
phpdbg.c

@ -1195,6 +1195,10 @@ phpdbg_main:
php_hash_environment(TSRMLS_C);
}
/* make sure to turn off buffer for ev command */
php_output_activate(TSRMLS_C);
php_output_deactivate(TSRMLS_C);
/* do not install sigint handlers for remote consoles */
/* sending SIGINT then provides a decent way of shutting down the server */

Loading…
Cancel
Save