[evolvis-commits] r12628: Add missing variables in gantt graphs

mirabilos at evolvis.org mirabilos at evolvis.org
Mon Feb 28 01:51:33 CET 2011


Author: mirabilos
Date: 2011-02-28 01:51:33 +0100 (Mon, 28 Feb 2011)
New Revision: 12628

Modified:
   trunk/gforge_base/evolvisforge-5.1/gforge/www/pm/gantt.php
   trunk/gforge_base/evolvisforge-5.1/gforge/www/pm/ganttpage.php
Log:
Add missing variables in gantt graphs

Modified: trunk/gforge_base/evolvisforge-5.1/gforge/www/pm/gantt.php
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/www/pm/gantt.php	2011-02-28 00:51:29 UTC (rev 12627)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/www/pm/gantt.php	2011-02-28 00:51:33 UTC (rev 12628)
@@ -23,6 +23,7 @@
 $_resolution = getStringFromRequest('_resolution');
 $_category_id = getIntFromRequest('_category_id');
 $_size = getIntFromRequest('_size');
+$max_rows = getIntFromRequest('max_rows');
 
 $ptf->setup($offset,$_order,$max_rows,'custom',$_assigned_to,$_status,$_category_id);
 if ($ptf->isError()) {

Modified: trunk/gforge_base/evolvisforge-5.1/gforge/www/pm/ganttpage.php
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/www/pm/ganttpage.php	2011-02-28 00:51:29 UTC (rev 12627)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/www/pm/ganttpage.php	2011-02-28 00:51:33 UTC (rev 12628)
@@ -63,6 +63,13 @@
 $cat_name_arr=util_result_column_to_array($res_cat,1);
 $cat_name_arr[]=_('Any');
 
+$_category_id = getIntFromRequest('_category_id');
+$_order = getIntFromRequest('_order');
+$_resolution = getIntFromRequest('_resolution');
+$_size = getIntFromRequest('_size');
+$_status = getStringFromRequest('_status');
+$_order = getStringFromRequest('_order');
+
 $cat_box=html_build_select_box_from_arrays ($cat_id_arr,$cat_name_arr,'_category_id',$_category_id,true,_('None')._('None'));
 
 /*



More information about the evolvis-commits mailing list