aboutsummaryrefslogtreecommitdiffstats
path: root/mod/notifications.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/notifications.php')
-rw-r--r--mod/notifications.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/notifications.php b/mod/notifications.php
index 96f50d90b..f38f5ae37 100644
--- a/mod/notifications.php
+++ b/mod/notifications.php
@@ -65,7 +65,7 @@ function notifications_content(&$a) {
$sql_extra = " AND `ignore` = 0 ";
- $tpl = file_get_contents('view/intros-top.tpl');
+ $tpl = load_view_file('view/intros-top.tpl');
$o .= replace_macros($tpl,array(
'$hide_url' => ((strlen($sql_extra)) ? 'notifications/all' : 'notifications' ),
'$hide_text' => ((strlen($sql_extra)) ? t('Show Ignored Requests') : t('Hide Ignored Requests'))
@@ -79,7 +79,7 @@ function notifications_content(&$a) {
if(($r !== false) && (count($r))) {
- $tpl = file_get_contents("view/intros.tpl");
+ $tpl = load_view_file("view/intros.tpl");
foreach($r as $rr) {