Author: jablko
Date: Sun Oct 17 17:51:13 2010
New Revision: 8207

Log:
Call ->processForm()

Modified:
   trunk/plugins/sfIsdfPlugin/modules/sfIsdfPlugin/actions/editAction.class.php

Modified: 
trunk/plugins/sfIsdfPlugin/modules/sfIsdfPlugin/actions/editAction.class.php
==============================================================================
--- 
trunk/plugins/sfIsdfPlugin/modules/sfIsdfPlugin/actions/editAction.class.php    
    Sun Oct 17 17:47:29 2010        (r8206)
+++ 
trunk/plugins/sfIsdfPlugin/modules/sfIsdfPlugin/actions/editAction.class.php    
    Sun Oct 17 17:51:13 2010        (r8207)
@@ -46,12 +46,12 @@
   {
     parent::earlyExecute();
 
-    $this->relatedFunctionsComponent = new 
sfIsdfPluginRelatedFunctionsComponent($this->context, 'sfIsdfPlugin', 
'relatedFunctions');
-    $this->relatedFunctionsComponent->execute($this->request);
-
     $this->relatedAuthorityRecordsComponent = new 
sfIsdfPluginRelatedAuthorityRecordsComponent($this->context, 'sfIsdfPlugin', 
'relatedAuthorityRecords');
     $this->relatedAuthorityRecordsComponent->execute($this->request);
 
+    $this->relatedFunctionsComponent = new 
sfIsdfPluginRelatedFunctionsComponent($this->context, 'sfIsdfPlugin', 
'relatedFunctions');
+    $this->relatedFunctionsComponent->execute($this->request);
+
     $this->relatedResourcesComponent = new 
sfIsdfPluginRelatedResourcesComponent($this->context, 'sfIsdfPlugin', 
'relatedResources');
     $this->relatedResourcesComponent->execute($this->request);
   }
@@ -176,4 +176,13 @@
         return parent::processField($field);
     }
   }
+
+  protected function processForm()
+  {
+    $this->relatedAuthorityRecordsComponent->processForm();
+    $this->relatedFunctionsComponent->processForm();
+    $this->relatedResourcesComponent()->processForm();
+
+    return parent::processForm();
+  }
 }

-- 
You received this message because you are subscribed to the Google Groups 
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/qubit-commits?hl=en.

Reply via email to