It looks like you're new here. If you want to get involved, click one of these buttons!
Index: Framework.Class.Control.php
===================================================================
--- Framework.Class.Control.php (revision 184)
+++ Framework.Class.Control.php (working copy)
@@ -99,12 +99,7 @@
// from within it's own constructor
function Constructor(&$Context) {
$this->Control($Context);
- $this->Delegates = array();
$this->FormPostBackKey = ForceIncomingString('FormPostBackKey', '');
- // Get delegates from the context object that were added before this object was instantiated
- if (array_key_exists($this->Name, $this->Context->DelegateCollection)) {
- $this->Delegates = array_merge($this->Delegates, $this->Context->DelegateCollection[$this->Name]);
- }
// Define the postback action
$this->PostBackAction = ForceIncomingString('PostBackAction', '');
Comments