From af966d529a7d7b869ac7b99303c60376a6bf3167 Mon Sep 17 00:00:00 2001 From: egorpromo Date: Wed, 16 Oct 2013 22:09:03 +0700 Subject: [PATCH] I add new line in methods that render code in the head and for body --- 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 df0b2b2..b3f2bfa 100644 --- a/framework/yii/base/View.php +++ b/framework/yii/base/View.php @@ -730,7 +730,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) ? '' : "\n" . implode("\n", $lines) . "\n"; } /** @@ -747,7 +747,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) ? '' : "\n" . implode("\n", $lines) . "\n"; } /** @@ -768,6 +768,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) ? '' : "\n" . implode("\n", $lines) . "\n"; } }