projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e079b51
)
Ensure the message type will always have a value.
author
Gunnar Wrobel
<p@rdus.de>
Sun, 3 Oct 2010 17:37:07 +0000
(19:37 +0200)
committer
Gunnar Wrobel
<p@rdus.de>
Sun, 3 Oct 2010 17:45:49 +0000
(19:45 +0200)
framework/Cli/lib/Horde/Cli.php
patch
|
blob
|
history
diff --git
a/framework/Cli/lib/Horde/Cli.php
b/framework/Cli/lib/Horde/Cli.php
index
38f0f8b
..
978f7f6
100644
(file)
--- a/
framework/Cli/lib/Horde/Cli.php
+++ b/
framework/Cli/lib/Horde/Cli.php
@@
-292,6
+292,9
@@
class Horde_Cli
case 'cli.message':
$type_message = $this->blue('[ INFO ] ');
break;
+
+ default:
+ $type_message = '';
}
$this->writeln($type_message . $message);