[Fusionforge-commits] r9220 - branches/Branch_5_0/gforge/www/tracker

Alain Peyrat aljeux at libremir.placard.fr.eu.org
Tue Mar 23 20:51:31 CET 2010


Author: aljeux
Date: 2010-03-23 20:51:31 +0100 (Tue, 23 Mar 2010)
New Revision: 9220

Modified:
   branches/Branch_5_0/gforge/www/tracker/downloadcsv.php
   branches/Branch_5_0/gforge/www/tracker/taskmgr.php
Log:
Force getIntFromRequest() for max_rows

Modified: branches/Branch_5_0/gforge/www/tracker/downloadcsv.php
===================================================================
--- branches/Branch_5_0/gforge/www/tracker/downloadcsv.php	2010-03-23 18:08:18 UTC (rev 9219)
+++ branches/Branch_5_0/gforge/www/tracker/downloadcsv.php	2010-03-23 19:51:31 UTC (rev 9220)
@@ -39,7 +39,7 @@
 $offset = getStringFromRequest('offset');
 $_sort_col = getStringFromRequest('_sort_col');
 $_sort_ord = getStringFromRequest('_sort_ord');
-$max_rows = getStringFromRequest('max_rows');
+$max_rows = getIntFromRequest('max_rows');
 $set = getStringFromRequest('set');
 $_assigned_to = getStringFromRequest('_assigned_to');
 $_status = getStringFromRequest('_status');

Modified: branches/Branch_5_0/gforge/www/tracker/taskmgr.php
===================================================================
--- branches/Branch_5_0/gforge/www/tracker/taskmgr.php	2010-03-23 18:08:18 UTC (rev 9219)
+++ branches/Branch_5_0/gforge/www/tracker/taskmgr.php	2010-03-23 19:51:31 UTC (rev 9220)
@@ -41,7 +41,7 @@
 if (getStringFromRequest('add_to_task')) {
 	$offset = getStringFromRequest('offset');
 	$_order = getStringFromRequest('_order');
-	$max_rows = getStringFromRequest('max_rows');
+	$max_rows = getIntFromRequest('max_rows');
 	$set = getStringFromRequest('set');
 	$_assigned_to = getStringFromRequest('_assigned_to');
 	$_status = getStringFromRequest('_status');




More information about the Fusionforge-commits mailing list