From bb081e4bf5431e6a707297419a970346971d41ae Mon Sep 17 00:00:00 2001
From: Simon L'nu <simon.lnu@gmail.com>
Date: Thu, 3 May 2012 14:35:21 -0400
Subject: [PATCH] forgot to move modernizr up. modernizr needs to be in <head>,
 like html5shiv (which it includes)

Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
---
 view/theme/dispy/bottom.tpl | 1 -
 view/theme/dispy/theme.php  | 3 +++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/view/theme/dispy/bottom.tpl b/view/theme/dispy/bottom.tpl
index 1af83e4c8c..130bfb25ae 100644
--- a/view/theme/dispy/bottom.tpl
+++ b/view/theme/dispy/bottom.tpl
@@ -44,4 +44,3 @@ function cmtBbOpen(id) {
 	$(".comment-edit-bb-" + id).show();
 }
 </script>
-<script type="text/javascript" src="$baseurl/view/theme/dispy/js/modernizr.custom.2.5.3.min.js"></script>
diff --git a/view/theme/dispy/theme.php b/view/theme/dispy/theme.php
index 1598220b87..eb70732684 100644
--- a/view/theme/dispy/theme.php
+++ b/view/theme/dispy/theme.php
@@ -22,6 +22,8 @@ function dispy_init(&$a) {
     $cssFile = null;
     $colour = false;
     $colour = get_pconfig(local_user(), "dispy", "colour");
+	$baseurl = $a->get_baseurl($ssl_state);
+
     if ($colour === false) { $colour = "light"; }
     if ($colour == "light") {
 		$colour_path = "/light/";
@@ -39,6 +41,7 @@ function dispy_init(&$a) {
 	}
 
 	$a->page['htmlhead'] .= <<<EOT
+	<script type="text/javascript" src="$baseurl/view/theme/dispy/js/modernizr.custom.2.5.3.min.js"></script>
 	<script type="text/javascript">
 	$(document).ready(function() {
 		$('.group-edit-icon').hover(
-- 
2.39.5