Browse Source

Fixes issue #110.

tags/2.0.0-beta
Qiang Xue 12 years ago
parent
commit
c9895eff82
  1. 4
      framework/base/View.php

4
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);

Loading…
Cancel
Save