From 1dd07fd5238f81f9d531d5722724d79259296da6 Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Thu, 7 May 2020 09:51:22 +0200 Subject: [PATCH] Fix global search refresh link URL --- src/includes/routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/includes/routes.php b/src/includes/routes.php index 7983cab5..46f0737f 100644 --- a/src/includes/routes.php +++ b/src/includes/routes.php @@ -144,7 +144,7 @@ function handle_global_search($request) { $LSview_actions=array(); $LSview_actions['refresh'] = array ( 'label' => _('Refresh'), - 'url' => 'search.php?pattern='.urlencode($pattern).'&refresh=1', + 'url' => 'search?pattern='.urlencode($pattern).'&refresh=1', 'action' => 'refresh' ); LStemplate :: assign('LSview_actions', $LSview_actions);