From 1f107100519ac2f51c290e1582165e4e87a3e6c5 Mon Sep 17 00:00:00 2001 From: Jeongkyu Shin Date: Sun, 12 Jul 2015 11:40:06 +0900 Subject: [PATCH] refs #1067 : modify - remove deprecated var prefix --- framework/utils/OutputWriter.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/framework/utils/OutputWriter.php b/framework/utils/OutputWriter.php index 77ff62150..72f4d6820 100644 --- a/framework/utils/OutputWriter.php +++ b/framework/utils/OutputWriter.php @@ -3,10 +3,9 @@ /// All rights reserved. Licensed under the GPL. /// See the GNU General Public License for more details. (/documents/LICENSE, /documents/COPYRIGHT) class Utils_OutputWriter { - var $type = 'stdout'; - public function __construct() { - $this->_buffer = null; + $this->_buffer = null; + $this->type = 'stdout'; } public function openStdout() {