From a98022ff1a081b1a9bf6085283bc1f444e8e93ec Mon Sep 17 00:00:00 2001 From: "Scott J. Pearson" Date: Thu, 21 Nov 2024 20:39:53 -0600 Subject: [PATCH] 6.18.2 --- Application.php | 3 ++- CareerDev.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Application.php b/Application.php index 5c705e3c..b89e1c6e 100644 --- a/Application.php +++ b/Application.php @@ -53,9 +53,10 @@ public static function getRelevantChoices() { } public static function getJQueryURL(): string { + $module = self::getModule(); $fileOrder = [ APP_PATH_DOCROOT."Resources/webpack/js/bundle.js" => APP_PATH_WEBROOT."Resources/webpack/js/bundle.js", - __DIR__."/js/jquery.min.js" => self::link("js/jquery.min.js"), + __DIR__."/js/jquery.min.js" => $module->getUrl("js/jquery.min.js"), ]; foreach ($fileOrder as $file => $url) { if (file_exists($file)) { diff --git a/CareerDev.php b/CareerDev.php index 450f02c0..bc6bf11e 100644 --- a/CareerDev.php +++ b/CareerDev.php @@ -17,7 +17,7 @@ class CareerDev { public static $passedModule = NULL; public static function getVersion() { - return "6.18.1"; + return "6.18.2"; } public static function getLocalhostPluginPid() {