diff --git a/module/user/view/ajaxprinttemplates.html.php b/module/user/view/ajaxprinttemplates.html.php
index c779460e82..6680b5418e 100644
--- a/module/user/view/ajaxprinttemplates.html.php
+++ b/module/user/view/ajaxprinttemplates.html.php
@@ -6,7 +6,7 @@ foreach($templates as $key => $template)
echo "";
if($template->public) echo "{$lang->public} ";
echo $template->title . "";
- if(empty($template->public) or $template->account == $app->user->account)echo "";
+ if(empty($template->public) or $template->account == $app->user->account or $app->user->admin) echo "";
echo "$template->content";
echo '';
}
@@ -35,7 +35,7 @@ foreach($templates as $key => $template)
echo "";
if($template->public) echo "{$lang->public} ";
echo $template->title . "";
- if(empty($template->public) or $template->account == $app->user->account)echo "";
+ if(empty($template->public) or $template->account == $app->user->account or $app->user->admin) echo "";
echo "$template->content";
echo '';
}