Do not show script source when running from CLI
This commit is contained in:
parent
35aa6d6291
commit
4a530d1d97
|
|
@ -84,11 +84,6 @@ function write($phpWord, $filename, $writers)
|
||||||
}
|
}
|
||||||
|
|
||||||
$result .= getEndingNotes($writers);
|
$result .= getEndingNotes($writers);
|
||||||
$result .= '<pre><code>';
|
|
||||||
if (file_exists($filename . '.php')) {
|
|
||||||
$result .= highlight_file($filename . '.php', true);
|
|
||||||
}
|
|
||||||
$result .= '</code></pre>';
|
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
@ -127,6 +122,12 @@ function getEndingNotes($writers)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$result .= '</p>';
|
$result .= '</p>';
|
||||||
|
|
||||||
|
$result .= '<pre>';
|
||||||
|
if (file_exists($filename . '.php')) {
|
||||||
|
$result .= highlight_file($filename . '.php', true);
|
||||||
|
}
|
||||||
|
$result .= '</pre>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue