From 560814be75fcd86d6b2843cf5bd8988841dc4367 Mon Sep 17 00:00:00 2001 From: "Jehan-Guillaume (ioguix) de Rorthais" Date: Fri, 12 Mar 2010 00:28:49 +0100 Subject: [PATCH] In fulltext.php, doDropMapping should not exit() on error but return so we can send the closing html tags. Reported by Alexey Baturin. --- fulltext.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fulltext.php b/fulltext.php index 40c3034f..dc71dd63 100644 --- a/fulltext.php +++ b/fulltext.php @@ -670,12 +670,12 @@ if (empty($_REQUEST['mapping']) && empty($_REQUEST['ma'])) { doDefault($lang['strftsspecifymappingtodrop']); - exit(); + return; } if (empty($_REQUEST['ftscfg'])) { doDefault($lang['strftsspecifyconfigtoalter']); - exit(); + return; } if ($confirm) { -- 2.39.5