From 5aac6f5693816ef4cc8fcbb9885db6640af8f9f7 Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Wed, 8 Oct 2008 00:07:53 +0000 Subject: [PATCH] BUGFIX MemberTableField->AddLink() was calling &methodName=add - this should be just "add", as per changes to the forum URLs in sapphire git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@63793 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/MemberTableField.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/MemberTableField.php b/code/MemberTableField.php index 27ab5040..2103d663 100755 --- a/code/MemberTableField.php +++ b/code/MemberTableField.php @@ -137,7 +137,7 @@ class MemberTableField extends ComplexTableField { } function AddLink() { - return "{$this->Link()}&methodName=add"; + return $this->Link() . '/add'; } function SearchForm() {