1 Commits

Author SHA1 Message Date
9e7c83b680 fix View Json Table 2024-08-07 14:31:07 +03:00

View File

@ -30,7 +30,7 @@ class ViewJsonTable extends JasonTable
//Хук перед выводом ячейки //Хук перед выводом ячейки
if (isset($this->beforePrintHook)){ if (isset($this->beforePrintHook)){
$hook = $this->beforePrintHook; $hook = $this->beforePrintHook;
$this->html = $hook(); $this->html .= $hook();
} }
$this->html .= "<table $paramsStr>"; $this->html .= "<table $paramsStr>";