Skip to content

Commit c1653e0

Browse files
committed
Use more specific template refs
Signed-off-by: Matt Friedman <maf675@gmail.com>
1 parent df382e1 commit c1653e0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

controller/main_controller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,6 @@ public function display()
173173
));
174174

175175
// Send all data to the template file
176-
return $this->helper->render('boardrules_controller.html', $this->lang->lang('BOARDRULES'));
176+
return $this->helper->render('@phpbb_boardrules/boardrules_controller.html', $this->lang->lang('BOARDRULES'));
177177
}
178178
}

tests/controller/main_controller_test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class main_controller_test extends \phpbb_test_case
2020
public function display_data()
2121
{
2222
return array(
23-
array(200, 'boardrules_controller.html'),
23+
array(200, '@phpbb_boardrules/boardrules_controller.html'),
2424
);
2525
}
2626

0 commit comments

Comments
 (0)