summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpfspot.class.php10
1 files 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 "<img src=\"resources/green_info.png\" alt=\"warning\" />\n";
- print $text ."<br />\n";
+ if(isset($this->fromcmd))
+ print $text ."\n";
+ else {
+ print "<img src=\"resources/green_info.png\" alt=\"warning\" />\n";
+ print $text ."<br />\n";
+ }
break;
case 'errorlog':
error_log($text);