Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
75b986e
)
MDL-23590 fixed borked cli_problem
author
Petr Skoda
<skodak@moodle.org>
Fri, 30 Jul 2010 14:15:03 +0000
(14:15 +0000)
committer
Petr Skoda
<skodak@moodle.org>
Fri, 30 Jul 2010 14:15:03 +0000
(14:15 +0000)
lib/clilib.php
patch
|
blob
|
blame
|
history
diff --git
a/lib/clilib.php
b/lib/clilib.php
index
d33145c
..
b39de3f
100644
(file)
--- a/
lib/clilib.php
+++ b/
lib/clilib.php
@@
-160,7
+160,7
@@
function cli_heading($string, $return=false) {
* @return void
*/
function cli_problem($text) {
- fwrite(STDERR, $text
,
"\n");
+ fwrite(STDERR, $text
.
"\n");
}
/**