From aba6c296dfc51ab43844d78bd0377f54311a3b3d Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Mon, 29 Dec 2008 21:58:40 +0100 Subject: [PATCH] if _error() is invoked from cmd-line, it should not display html-errors Signed-off-by: Andreas Unterkircher --- phpfspot.class.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/phpfspot.class.php b/phpfspot.class.php index 4acb647..f3f78a7 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -2061,7 +2061,7 @@ class PHPFSPOT { $full_path = $this->translate_path($this->parse_uri($details['uri'], 'fullpath')); if(!file_exists($full_path)) { - $this->_error("File ". $full_path ." does not exist\n"); + $this->_error("File ". $full_path ." does not exist"); return; } @@ -2578,8 +2578,12 @@ class PHPFSPOT { switch($this->cfg->logging) { default: case 'display': - print "\"warning\"\n"; - print $text ."
\n"; + if(isset($this->fromcmd)) + print $text ."\n"; + else { + print "\"warning\"\n"; + print $text ."
\n"; + } break; case 'errorlog': error_log($text); -- 2.17.1