From c9895eff82d59695eeba6d9083c56c954a915a51 Mon Sep 17 00:00:00 2001 From: Qiang Xue Date: Sun, 5 May 2013 10:06:40 -0400 Subject: [PATCH] Fixes issue #110. --- framework/base/View.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/base/View.php b/framework/base/View.php index a72982e..115bfad 100644 --- a/framework/base/View.php +++ b/framework/base/View.php @@ -744,10 +744,10 @@ class View extends Component { $lines = array(); if (!empty($this->metaTags)) { - $lines[] = implode("\n", $this->cssFiles); + $lines[] = implode("\n", $this->metaTags); } if (!empty($this->linkTags)) { - $lines[] = implode("\n", $this->cssFiles); + $lines[] = implode("\n", $this->linkTags); } if (!empty($this->cssFiles)) { $lines[] = implode("\n", $this->cssFiles);