From c1ee64a69af0b051cddc4e78db6e93d681fde5e7 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Mon, 12 Nov 2007 03:27:13 +0000 Subject: [PATCH] fixed export-feature in MemberTableField git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@44625 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- forms/TableListField.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/forms/TableListField.php b/forms/TableListField.php index 105972c95..93cc60021 100755 --- a/forms/TableListField.php +++ b/forms/TableListField.php @@ -924,7 +924,8 @@ JS unset($params['forcehtml']); // TODO Refactor unset($params['ctf']); - $params['ctf'][$this->Name()]['search'] = (isset($_REQUEST['ctf'][$this->Name()]['search'])) ? $_REQUEST['ctf'][$this->Name()]['search'] : null; + $params['ctf'][$this->Name()]['search'] = (isset($_REQUEST['ctf'][$this->Name()]['search'])) ? $_REQUEST['ctf'][$this->Name()]['search'] : null; + $params['SecurityID'] = Session::get('SecurityID'); // unset all actions (otherwise they override action_callfieldmethod) foreach($params as $paramKey => $paramVal) {