From 3e159c9969541ab8d02fa8cf0f1b5d79cee59977 Mon Sep 17 00:00:00 2001 From: Qiang Xue Date: Wed, 16 Oct 2013 12:07:09 -0400 Subject: [PATCH] Removed the extra EOLs. --- framework/yii/base/View.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/framework/yii/base/View.php b/framework/yii/base/View.php index 483b611..f9cae98 100644 --- a/framework/yii/base/View.php +++ b/framework/yii/base/View.php @@ -773,7 +773,7 @@ class View extends Component if (!empty($this->js[self::POS_HEAD])) { $lines[] = Html::script(implode("\n", $this->js[self::POS_HEAD]), array('type' => 'text/javascript')); } - return empty($lines) ? '' : implode("\n", $lines) . "\n"; + return empty($lines) ? '' : implode("\n", $lines); } /** @@ -790,7 +790,7 @@ class View extends Component if (!empty($this->js[self::POS_BEGIN])) { $lines[] = Html::script(implode("\n", $this->js[self::POS_BEGIN]), array('type' => 'text/javascript')); } - return empty($lines) ? '' : implode("\n", $lines) . "\n"; + return empty($lines) ? '' : implode("\n", $lines); } /** @@ -811,6 +811,6 @@ class View extends Component $js = "jQuery(document).ready(function(){\n" . implode("\n", $this->js[self::POS_READY]) . "\n});"; $lines[] = Html::script($js, array('type' => 'text/javascript')); } - return empty($lines) ? '' : implode("\n", $lines) . "\n"; + return empty($lines) ? '' : implode("\n", $lines); } }