Parcourir la source

fixed Map in TableAjax

Piotr Labudda il y a 9 ans
Parent
commit
dea61792d8
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      SE/se-lib/TableAjax.php

+ 2 - 2
SE/se-lib/TableAjax.php

@@ -248,7 +248,7 @@ class TableAjax extends ViewAjax {
 		return false;
 	}
 
-	public function renderStatic() {
+	public function renderStatic($tblAjaxMap = null) {
 		static $_rendered = false;
 		if ($_rendered) return;
 
@@ -398,7 +398,7 @@ class TableAjax extends ViewAjax {
 
 		$jsToogleFiltrProcesuFunctionName = 'tableAjaxToggleFiltrProcesInit';
 		ob_start();
-		$this->renderStatic();
+		$this->renderStatic($tblAjaxMap);
 		UI::startContainer();
 		UI::showMessagesForTable($this->_tbl);
 		UI::endContainer();