diff --git a/forms/FormAction.php b/forms/FormAction.php
index d7f63a8a0..7d84c314f 100755
--- a/forms/FormAction.php
+++ b/forms/FormAction.php
@@ -28,17 +28,11 @@ class FormAction extends FormField {
 	function actionName() {
 		return substr($this->name,7);
 	}
+
 	function extraData() {
 		return $this->extraData;
 	}
 	
-	/**
-	 * Avoid rendering with DefaultFieldHolder (renders <label>-tags etc.)
-	 */
-	function FieldHolder() {
-		return $this->Field();
-	}
-	
 	function Field() {
 		$titleAttr = $this->description ? "title=\"" . Convert::raw2att($this->description) . "\"" : '';
 		return "<input class=\"action" . $this->extraClass() . "\" id=\"" . $this->id() . "\" type=\"submit\" name=\"{$this->name}\" value=\"" . $this->attrTitle() . "\" $titleAttr />";