BUGFIX TableListField items couldn't be deleted because TableListField_ItemRequest::__construct() didn't call parent::__construct()

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@77016 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sean Harvey 2009-05-17 22:58:40 +00:00 committed by Sam Minnee
parent 56977a0c49
commit 63aba66eec

View File

@ -1374,6 +1374,8 @@ class TableListField_ItemRequest extends RequestHandler {
function __construct($ctf, $itemID) { function __construct($ctf, $itemID) {
$this->ctf = $ctf; $this->ctf = $ctf;
$this->itemID = $itemID; $this->itemID = $itemID;
parent::__construct();
} }
function delete() { function delete() {