aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+github@gmail.com>2024-05-16 14:19:11 +0200
committerJan-Hendrik Willms <tleilax+github@gmail.com>2024-05-16 14:19:11 +0200
commitf6c4560482983c4e48c94853cd221772f1b1a050 (patch)
tree5094b4acf8724f828115dedfe0d7e4298b51eb90 /app
parent1c2240fefb9250a6c466f80e464ea28c24bd7c09 (diff)
fix incorrect calls to Template::render(), re #4101
Diffstat (limited to 'app')
-rw-r--r--app/views/lvgruppen/lvgruppen/index.php2
-rw-r--r--app/views/materialien/files/index.php2
-rw-r--r--app/views/studiengaenge/faecher/index.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/app/views/lvgruppen/lvgruppen/index.php b/app/views/lvgruppen/lvgruppen/index.php
index d5ab6a8..2ce6014 100644
--- a/app/views/lvgruppen/lvgruppen/index.php
+++ b/app/views/lvgruppen/lvgruppen/index.php
@@ -91,7 +91,7 @@
$pagination->set_attribute('page', $page);
$page_link = reset(explode('?', $controller->action_url('index'))) . '?page_lvgruppen=%s';
$pagination->set_attribute('pagelink', $page_link);
- echo $pagination->render("shared/pagechooser");
+ echo $pagination->render();
?>
</td>
</tr>
diff --git a/app/views/materialien/files/index.php b/app/views/materialien/files/index.php
index 1b00cec..6b89847 100644
--- a/app/views/materialien/files/index.php
+++ b/app/views/materialien/files/index.php
@@ -111,7 +111,7 @@
// ARGH!
$page_link = reset(explode('?', $controller->action_url('index'))) . '?page_files=%s';
$pagination->set_attribute('pagelink', $page_link);
- echo $pagination->render("shared/pagechooser");
+ echo $pagination->render();
?>
</td>
</tr>
diff --git a/app/views/studiengaenge/faecher/index.php b/app/views/studiengaenge/faecher/index.php
index 1b3f325..485d922 100644
--- a/app/views/studiengaenge/faecher/index.php
+++ b/app/views/studiengaenge/faecher/index.php
@@ -64,7 +64,7 @@
$parts = explode('?', $controller->action_url('index'));
$page_link = reset($parts) . '?page_faecher=%s';
$pagination->set_attribute('pagelink', $page_link);
- echo $pagination->render("shared/pagechooser");
+ echo $pagination->render();
?>
</td>
</tr>