Skip to content
Snippets Groups Projects
Commit f6c45604 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

fix incorrect calls to Template::render(), re #4101

parent 1c2240fe
No related branches found
No related tags found
No related merge requests found
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
$pagination->set_attribute('page', $page); $pagination->set_attribute('page', $page);
$page_link = reset(explode('?', $controller->action_url('index'))) . '?page_lvgruppen=%s'; $page_link = reset(explode('?', $controller->action_url('index'))) . '?page_lvgruppen=%s';
$pagination->set_attribute('pagelink', $page_link); $pagination->set_attribute('pagelink', $page_link);
echo $pagination->render("shared/pagechooser"); echo $pagination->render();
?> ?>
</td> </td>
</tr> </tr>
......
...@@ -111,7 +111,7 @@ ...@@ -111,7 +111,7 @@
// ARGH! // ARGH!
$page_link = reset(explode('?', $controller->action_url('index'))) . '?page_files=%s'; $page_link = reset(explode('?', $controller->action_url('index'))) . '?page_files=%s';
$pagination->set_attribute('pagelink', $page_link); $pagination->set_attribute('pagelink', $page_link);
echo $pagination->render("shared/pagechooser"); echo $pagination->render();
?> ?>
</td> </td>
</tr> </tr>
......
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
$parts = explode('?', $controller->action_url('index')); $parts = explode('?', $controller->action_url('index'));
$page_link = reset($parts) . '?page_faecher=%s'; $page_link = reset($parts) . '?page_faecher=%s';
$pagination->set_attribute('pagelink', $page_link); $pagination->set_attribute('pagelink', $page_link);
echo $pagination->render("shared/pagechooser"); echo $pagination->render();
?> ?>
</td> </td>
</tr> </tr>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment