From 759cb2dd6d239c8ec15ef2eb8e32afac896917ec Mon Sep 17 00:00:00 2001 From: sheadawson Date: Fri, 29 Nov 2013 11:20:30 +1100 Subject: [PATCH] MINOR added onBeforeRender extension hook to FormField --- forms/FormField.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forms/FormField.php b/forms/FormField.php index 8f0e3c7aa..fea6b16d9 100644 --- a/forms/FormField.php +++ b/forms/FormField.php @@ -583,7 +583,7 @@ class FormField extends RequestHandler { */ public function Field($properties = array()) { $obj = ($properties) ? $this->customise($properties) : $this; - + $this->extend('onBeforeRender', $this); return $obj->renderWith($this->getTemplates()); }