Fix widgets that has disappeared

This commit is contained in:
Laurent Destailleur 2020-12-02 15:16:20 +01:00
parent 409b73fe2c
commit ea1c55cf1e
4 changed files with 4 additions and 4 deletions

View File

@ -204,6 +204,6 @@ class box_last_modified_ticket extends ModeleBoxes
*/ */
public function showBox($head = null, $contents = null, $nooutput = 0) public function showBox($head = null, $contents = null, $nooutput = 0)
{ {
parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput); return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
} }
} }

View File

@ -202,6 +202,6 @@ class box_last_ticket extends ModeleBoxes
*/ */
public function showBox($head = null, $contents = null, $nooutput = 0) public function showBox($head = null, $contents = null, $nooutput = 0)
{ {
parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput); return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
} }
} }

View File

@ -111,6 +111,6 @@ class box_lastlogin extends ModeleBoxes
*/ */
public function showBox($head = null, $contents = null, $nooutput = 0) public function showBox($head = null, $contents = null, $nooutput = 0)
{ {
parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput); return parent::showBox($this->info_box_head, $this->info_box_contents, $nooutput);
} }
} }

View File

@ -888,7 +888,7 @@ print '<div class="fichecenter fichecenterbis">';
/* /*
* Show boxes * Show widgets (boxes)
*/ */
$boxlist .= '<div class="twocolumns">'; $boxlist .= '<div class="twocolumns">';