openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit a5a675191c34caa73c16f3deb06d3558d94ec52a
parent 4cf3cce5d8f9dba61c6894a7a5a122dad6325b4f
Author: Jan Dankert <devnull@localhost>
Date:   Thu, 31 Jul 2014 23:59:14 +0200

Unnötige Debug-Statements.

Diffstat:
model/File.class.php | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/model/File.class.php b/model/File.class.php @@ -553,8 +553,6 @@ EOF if ( is_file($this->tmpfile())) return implode('',file($this->tmpfile())); // From cache - Logger::debug("preview 1"); - $db = db_connection(); $sql = new Sql( 'SELECT size,value'. @@ -576,7 +574,6 @@ EOF $f = fopen( $this->tmpfile(),'w' ); fwrite( $f,$this->value ); fclose( $f ); - Logger::debug("preview 2:".$this->objectid.'/'.strlen($this->value)); return $this->value; }