From 48334c985b012c9a9f388c642acbc6f047e6352c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oscar=20Rydh=C3=A9?= Date: Mon, 3 May 2021 08:12:43 +0200 Subject: [PATCH] Fix text selection in package manager MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When viewing the search and replace popup the text selection link does not work. This is because the js files are not loaded properly. Signed-off-by: Oscar Rydhé --- Sources/Packages.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Packages.php b/Sources/Packages.php index bb9c8fc503..fb5fe670ba 100644 --- a/Sources/Packages.php +++ b/Sources/Packages.php @@ -1931,8 +1931,8 @@ function ViewOperations() $context['javascript_files'] = array_intersect_key( $context['javascript_files'], [ - 'smf_script' => true, - 'smf_jquery' => true + 'smf_script_js' => true, + 'smf_jquery_js' => true ] );