fix list not working when exec is set but not executing

This commit is contained in:
krakjoe 2013-11-17 15:57:49 +00:00
parent 17cc942e7c
commit a0151e91a5
2 changed files with 3 additions and 1 deletions

View File

@ -33,7 +33,7 @@ ZEND_EXTERN_MODULE_GLOBALS(phpdbg);
PHPDBG_LIST(lines) /* {{{ */
{
if (!PHPDBG_G(exec) || !zend_is_executing(TSRMLS_C)) {
if (!PHPDBG_G(exec) && !zend_is_executing(TSRMLS_C)) {
phpdbg_error("Not executing, and execution context not set");
return SUCCESS;
}

View File

@ -1,4 +1,6 @@
<?php
include 'web-bootstrap.php';
class phpdbg {
public function isGreat($greeting = null) {
printf(