From b508dce3ff286112d1e6ba50c50685da6a590be5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Doursenaud?= <rdoursenaud@gpcsolutions.fr> Date: Mon, 6 Jul 2015 16:48:10 +0200 Subject: [PATCH] Fix: jquery path --- dev/test/testdiv.php | 4 ++-- htdocs/admin/system/perf.php | 2 +- htdocs/paypal/lib/paypal.lib.php | 2 +- htdocs/public/test/test_arrays.php | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dev/test/testdiv.php b/dev/test/testdiv.php index 2f1bd9182ae..5b57f0a3667 100644 --- a/dev/test/testdiv.php +++ b/dev/test/testdiv.php @@ -9,10 +9,10 @@ <link rel="shortcut icon" type="image/x-icon" href="/dolibarrnew/theme/eldy/img/favicon.ico"/> <title>Login Dolibarr 3.4.0-alpha</title> <!-- Includes for JQuery (Ajax library) --> -<link rel="stylesheet" type="text/css" href="/dolibarrnew/includes/jquery/css/smoothness/jquery-ui-latest.custom.css" /> +<link rel="stylesheet" type="text/css" href="/dolibarrnew/includes/jquery/css/smoothness/jquery-ui.custom.css" /> <link rel="stylesheet" type="text/css" title="default" href="/dolibarrnew/custom/filemanager/css/filemanager.css.php"><!-- Added by module filemanager--> <!-- Includes JS for JQuery --> -<script type="text/javascript" src="/dolibarrnew/includes/jquery/js/jquery-latest.min.js"></script> +<script type="text/javascript" src="/dolibarrnew/includes/jquery/js/jquery.min.js"></script> <script type="text/javascript" src="/dolibarrnew/core/js/dst.js"></script> <link rel="stylesheet" type="text/css" href="/dolibarrnew/theme/eldy/style.css.php?lang=fr_FR" /> <!-- HTTP_USER_AGENT = Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.97 Safari/537.22 --> diff --git a/htdocs/admin/system/perf.php b/htdocs/admin/system/perf.php index afa33e6b38f..ffa97b5b87b 100644 --- a/htdocs/admin/system/perf.php +++ b/htdocs/admin/system/perf.php @@ -172,7 +172,7 @@ jQuery(document).ready(function() { var compcssstring; getcssurl = $.ajax({ type: "GET", - url: \''.DOL_URL_ROOT.'/includes/jquery/css/smoothness/jquery-ui-latest.custom.css\', + url: \''.DOL_URL_ROOT.'/includes/jquery/css/smoothness/jquery-ui.custom.css\', cache: false, /* async: false, */ /*crossDomain: true, */ diff --git a/htdocs/paypal/lib/paypal.lib.php b/htdocs/paypal/lib/paypal.lib.php index 5eb4549f0fa..a7b39cd5f34 100644 --- a/htdocs/paypal/lib/paypal.lib.php +++ b/htdocs/paypal/lib/paypal.lib.php @@ -69,7 +69,7 @@ function llxHeaderPaypal($title, $head = "") // JQuery. Must be before other includes print '<!-- Includes JS for JQuery -->'."\n"; - print '<script type="text/javascript" src="'.DOL_URL_ROOT.'/includes/jquery/js/jquery-latest.min'.$ext.'"></script>'."\n"; + print '<script type="text/javascript" src="'.DOL_URL_ROOT.'/includes/jquery/js/jquery.min'.$ext.'"></script>'."\n"; // jQuery jnotify if (empty($conf->global->MAIN_DISABLE_JQUERY_JNOTIFY)) { diff --git a/htdocs/public/test/test_arrays.php b/htdocs/public/test/test_arrays.php index 698046cf708..77d92e5d8eb 100644 --- a/htdocs/public/test/test_arrays.php +++ b/htdocs/public/test/test_arrays.php @@ -30,14 +30,14 @@ if (empty($usedolheader)) <link rel="shortcut icon" type="image/x-icon" href="<?php echo DOL_URL_ROOT ?>/theme/eldy/img/favicon.ico"/> <title>Test page</title> <!-- Includes for JQuery (Ajax library) --> - <link rel="stylesheet" type="text/css" href="<?php echo DOL_URL_ROOT ?>/includes/jquery/css/smoothness/jquery-ui-latest.custom.css" /> + <link rel="stylesheet" type="text/css" href="<?php echo DOL_URL_ROOT ?>/includes/jquery/css/smoothness/jquery-ui.custom.css" /> <link rel="stylesheet" type="text/css" href="<?php echo DOL_URL_ROOT ?>/includes/jquery/plugins/datatables/css/jquery.dataTables.css" /> <?php if ($_GET["dol_use_jmobile"] == 1) { ?> <link rel="stylesheet" type="text/css" href="<?php echo DOL_URL_ROOT ?>/includes/jquery/plugins/mobile/jquery.mobile-latest.min.css" /> <?php } ?> <link rel="stylesheet" type="text/css" title="default" href="<?php echo DOL_URL_ROOT ?>/theme/eldy/style.css.php<?php echo ($_GET["dol_use_jmobile"] == 1)?'?dol_use_jmobile=1&dol_optimize_smallscreen=1':''; ?>" /> <!-- Includes JS for JQuery --> - <script type="text/javascript" src="<?php echo DOL_URL_ROOT ?>/includes/jquery/js/jquery-latest.min.js"></script> + <script type="text/javascript" src="<?php echo DOL_URL_ROOT ?>/includes/jquery/js/jquery.min.js"></script> <script type="text/javascript" src="<?php echo DOL_URL_ROOT ?>/includes/jquery/plugins/tablednd/jquery.tablednd.0.6.min.js"></script> <script type="text/javascript" src="<?php echo DOL_URL_ROOT ?>/includes/jquery/plugins/datatables/js/jquery.dataTables.js"></script> <?php if ($_GET["dol_use_jmobile"] == 1) { ?> -- GitLab