Skip to content

Commit

Permalink
Fix the wrong jquery call on template top
Browse files Browse the repository at this point in the history
  • Loading branch information
acidvertigo committed Dec 28, 2011
1 parent 9baa0e4 commit a78bbbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion catalog/admin/includes/template_top.php
Expand Up @@ -19,7 +19,7 @@
<base href="<?php echo HTTP_SERVER . DIR_WS_ADMIN; ?>" />
<!--[if IE]><script type="text/javascript" src="<?php echo tep_catalog_href_link('ext/flot/excanvas.min.js'); ?>"></script><![endif]-->
<link rel="stylesheet" href="<?php echo tep_catalog_href_link('ext/jquery/ui/redmond/jquery-ui-1.8.16.css'); ?>">
<script src="<?php echo tep_catalog_href_link('ext/jquery/jquery-1.7.min.js'); ?>"></script>
<script src="<?php echo tep_catalog_href_link('ext/jquery/jquery-1.7.1.min.js'); ?>"></script>
<script src="<?php echo tep_catalog_href_link('ext/jquery/ui/jquery-ui-1.8.16.min.js'); ?>"></script>

<?php
Expand Down
2 changes: 1 addition & 1 deletion catalog/includes/template_top.php
Expand Up @@ -27,7 +27,7 @@
<title><?php echo tep_output_string_protected($oscTemplate->getTitle()); ?></title>
<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>" />
<link rel="stylesheet" href="ext/jquery/ui/redmond/jquery-ui-1.8.16.css" />
<script src="ext/jquery/jquery-1.7.min.js"></script>
<script src="ext/jquery/jquery-1.7.1.min.js"></script>
<script src="ext/jquery/ui/jquery-ui-1.8.16.min.js"></script>

<?php
Expand Down

0 comments on commit a78bbbc

Please sign in to comment.