From b0edc4c6f928b2223b4a54c427b432b978b98b2c Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Tue, 23 Oct 2018 06:51:23 +0200 Subject: [PATCH] responsive account list --- lam/lib/lists.inc | 25 ++----------------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/lam/lib/lists.inc b/lam/lib/lists.inc index 14bd4288..48a87db4 100644 --- a/lam/lib/lists.inc +++ b/lam/lib/lists.inc @@ -1,6 +1,5 @@ listGetParams(); // print HTML head - $this->listPrintHeader(); + $this->printHeader(); // print messages when redirected from other pages $this->listPrintRedirectMessages(); // refresh data if needed @@ -220,7 +219,7 @@ class lamList { $this->listPrintTableHeader(); echo "
\n"; } - $this->listPrintFooter(); + $this->printFooter(); } /** @@ -873,16 +872,6 @@ class lamList { // only used by subclasses } - /** - * Prints the HTML header. - * - * @deprecated - */ - protected function listPrintHeader() { - include '../main_header.php'; - $this->printHeaderContent(); - } - /** * Prints the header part of the page. */ @@ -898,16 +887,6 @@ class lamList { // implemented by child classes if needed } - /** - * Prints the HTML footer. - * - * @deprecated - */ - protected function listPrintFooter() { - $this->printFooterContent(); - include '../main_footer.php'; - } - /** * Prints the footer area of the page. */