|
From: <gem...@li...> - 2012-10-01 12:57:26
|
Revision: 965
http://gemstracker.svn.sourceforge.net/gemstracker/?rev=965&view=rev
Author: mennodekker
Date: 2012-10-01 12:57:20 +0000 (Mon, 01 Oct 2012)
Log Message:
-----------
Fix error with tabs and autosearch (request doesn't know about tabs)
Add Excel to survey maintenance
Modified Paths:
--------------
trunk/library/classes/Gems/Controller/BrowseEditAction.php
trunk/library/classes/Gems/Menu/MenuAbstract.php
Modified: trunk/library/classes/Gems/Controller/BrowseEditAction.php
===================================================================
--- trunk/library/classes/Gems/Controller/BrowseEditAction.php 2012-09-27 11:14:25 UTC (rev 964)
+++ trunk/library/classes/Gems/Controller/BrowseEditAction.php 2012-10-01 12:57:20 UTC (rev 965)
@@ -640,6 +640,9 @@
}
}
+ // Make sure to update the request
+ $this->getRequest()->setParams($data);
+
return $data;
}
Modified: trunk/library/classes/Gems/Menu/MenuAbstract.php
===================================================================
--- trunk/library/classes/Gems/Menu/MenuAbstract.php 2012-09-27 11:14:25 UTC (rev 964)
+++ trunk/library/classes/Gems/Menu/MenuAbstract.php 2012-10-01 12:57:20 UTC (rev 965)
@@ -444,6 +444,7 @@
// SURVEY MAINTENANCE CONTROLLER
$page = $setup->addPage($this->_('Surveys'), 'pr.survey-maintenance', 'survey-maintenance');
$page->addEditAction();
+ $page->addExcelAction();
$page->addShowAction();
$page->addPdfButton($this->_('PDF'), 'pr.survey-maintenance')
->addParameters(MUtil_Model::REQUEST_ID)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|