Commit:    8c83840bf3f24595ec90551d7d52d2c8a96c9905
Author:    Levi Morrison <[email protected]>         Fri, 28 Mar 2014 
13:17:36 -0600
Parents:   7ad7846937817cdcee859594e0804f686b984d2f
Branches:  master

Link:       
http://git.php.net/?p=web/shared.git;a=commitdiff;h=8c83840bf3f24595ec90551d7d52d2c8a96c9905

Log:
Fixed argument order; defaults.css needs to be first.

Changed paths:
  M  templates/header.inc


Diff:
diff --git a/templates/header.inc b/templates/header.inc
index 03ea33c..605ce01 100644
--- a/templates/header.inc
+++ b/templates/header.inc
@@ -37,9 +37,9 @@ $current_time = time();
   <title>PHP: <?=$TITLE ?></title>
 
 <?php
-$styles = array_merge($CSS, array(
+$styles = array_merge(array(
   '/styles/defaults.css'
-));
+), $CSS);
 foreach($styles as $style):
   // note that $style should have a leading slash
   $filemtime = filemtime(__DIR__ . '/..' . $style) ?: $current_time;


--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to