summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--it.class1
-rw-r--r--it_debug.class1
2 files changed, 2 insertions, 0 deletions
diff --git a/it.class b/it.class
index 17f5658..8a6b8d7 100644
--- a/it.class
+++ b/it.class
@@ -155,6 +155,7 @@ function error($p = array(), $body = null, $to = null) # $body and $to deprecate
@chmod("/tmp/alertdata", 0777);
$toscreen = ini_get('display_errors') || (defined("STDOUT") && posix_isatty(STDOUT)) || EDC('astwin') || EDC('asdevel');
+ @fseek(STDOUT, 0, SEEK_END); # Work around PHP bug 49819: posix_isatty seeks to start
if ($toscreen && !it::is_live())
$GLOBALS['debug_noredir'] = 1;
diff --git a/it_debug.class b/it_debug.class
index d8f45cf..b7213d5 100644
--- a/it_debug.class
+++ b/it_debug.class
@@ -95,6 +95,7 @@ function dump($args)
$nored = "\033[m";
}
+ @fseek(STDOUT, 0, SEEK_END); # Work around PHP bug 49819: posix_isatty seeks to start
$src = it_debug::srcline(1);
list($function, $paramlist) = it::match('\b(D|ED|EDC|EDX)\s*\((.*)', $src);
$paramtokens = token_get_all("<?php $paramlist");