Remove debug statement

Either we throw an exception or we ignore it. But we should certainly not print this to the end-user...
This commit is contained in:
Lukas Reschke 2014-11-12 11:32:48 +01:00
parent 5aaea6961c
commit da31177a8f
1 changed files with 0 additions and 4 deletions

View File

@ -676,10 +676,6 @@ class View {
$this->mkdir($filePath);
}
if (!$tmpFile) {
debug_print_backtrace();
}
$source = fopen($tmpFile, 'r');
if ($source) {
$this->file_put_contents($path, $source);