Quote:
Originally Posted by snakes1100
Id start in your templates & look for an extra < in there or you didnt close the call, you might of fat fingered some code.
|
Do you think this
<!-- --> would cause it in a <vb:if> statement it looked like this
HTML Code:
<vb:if condition="$_COOKIE['aprilfoolsday'] == 'test'">
<!-- -->
<vb:else />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript" src="nzbbackend/js/jquery.cookie.js"></script>
<script type="text/javascript">
<!--
$(function() {
var COOKIE_NAME = 'aprilfoolsday';
$go = $.cookie(COOKIE_NAME);
if ($go == null) {
$.cookie(COOKIE_NAME, 'test', { path: '/', expires: 1 });
window.location = "/aprilfools.html"
}
});
//-->
</script>
</vb:if>
--------------- Added [DATE]1515257500[/DATE] at [TIME]1515257500[/TIME] ---------------
nevermind its not fixed it.. Its being called on all pages on the site even custom mods so it has to be something global.. Its just not a very good error tells me nothing.