diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-05-13 14:20:46 -0700 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-05-13 14:20:46 -0700 |
commit | c6e4239a672d2456c67e219da480a63f77056723 (patch) | |
tree | e6ac91bffc9a60fdd713072e67a87c49d9f3d980 | |
parent | 1bef5b5b419faf016fdd355d9b2315d81855aee9 (diff) | |
download | pathery-c6e4239a672d2456c67e219da480a63f77056723.tar.xz |
Missed ending quote string! Whoops!
-rw-r--r-- | includes/header.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/header.php b/includes/header.php index d394b39..15129c4 100644 --- a/includes/header.php +++ b/includes/header.php @@ -29,7 +29,7 @@ function htmlHeader($css = array(), $title = 'Pathery', $desc = '', $scripts = a <script src="js/ajax.js" async="async"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="js/mapspecs.js?v=050513.js"></script>
- <script src="js/globe.js?v=050513.js></script>
+ <script src="js/globe.js?v=050513.js"></script>
<script>
(function(c,a){window.mixpanel=a;var b,d,h,e;b=c.createElement("script");b.type="text/javascript";b.async=!0;b.src=("https:"===c.location.protocol?"https:":"http:")+'//cdn.mxpnl.com/libs/mixpanel-2.1.min.js';d=c.getElementsByTagName("script")[0];d.parentNode.insertBefore(b,d);a._i=[];a.init=function(b,c,f){function d(a,b){var c=b.split(".");2==c.length&&(a=a[c[0]],b=c[1]);a[b]=function(){a.push([b].concat(Array.prototype.slice.call(arguments,0)))}}var g=a;"undefined"!==typeof f?
|