Explorar el Código

changed force filter (ff_*) to read from request not only get

Piotr Labudda hace 8 años
padre
commit
1ae23e3e57
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      SE/se-lib/Route/ViewTableAjax.php

+ 1 - 1
SE/se-lib/Route/ViewTableAjax.php

@@ -66,7 +66,7 @@ class Route_ViewTableAjax extends RouteBase {
 			$filterInit = new stdClass();
 			$filterInit->currSortCol = $acl->getPrimaryKeyField();
 			$filterInit->currSortFlip = 'desc';
-			foreach ($_GET as $k => $v) {
+			foreach ($_REQUEST as $k => $v) {
 				if (strlen($k) > 3 && substr($k, 0, 2) == 'f_' && !empty($v)) {// filter prefix
 					$filterInit->$k = $v;
 				}