summaryrefslogtreecommitdiff
path: root/includes/controller
diff options
context:
space:
mode:
authorFelix Favre <gnomus@gnomus.de>2014-12-06 22:46:40 +0100
committerFelix Favre <gnomus@gnomus.de>2014-12-06 22:46:40 +0100
commit45ac884474753313b79e1f78934b18ae05253055 (patch)
tree887e478e002228c5e1828061f7885b160e4720cf /includes/controller
parent921449f3efd2a7ba39009452dc4c4954109e221d (diff)
parenta48fd8fc37f75222a680e78c6ade8c41f02c3e6e (diff)
Merge branch 'master' of github.com:engelsystem/engelsystem
Diffstat (limited to 'includes/controller')
-rw-r--r--includes/controller/user_angeltypes_controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/controller/user_angeltypes_controller.php b/includes/controller/user_angeltypes_controller.php
index 049d6211..66abc589 100644
--- a/includes/controller/user_angeltypes_controller.php
+++ b/includes/controller/user_angeltypes_controller.php
@@ -16,7 +16,7 @@ function user_angeltypes_unconfirmed_hint() {
foreach ($unconfirmed_user_angeltypes as $user_angeltype)
$unconfirmed_links[] = '<a href="' . page_link_to('angeltypes') . '&action=view&angeltype_id=' . $user_angeltype['angeltype_id'] . '">' . $user_angeltype['name'] . '</a>';
- return error(sprintf(ngettext("There is %d unconfirmed angeltype.", "There are %d unconfirmed angeltypes.", count($unconfirmed_user_angeltypes)), count($unconfirmed_user_angeltypes)) . " " . _('Angel types which need approvals:') . ' ' . join(', ', $unconfirmed_links));
+ return info(sprintf(ngettext("There is %d unconfirmed angeltype.", "There are %d unconfirmed angeltypes.", count($unconfirmed_user_angeltypes)), count($unconfirmed_user_angeltypes)) . " " . _('Angel types which need approvals:') . ' ' . join(', ', $unconfirmed_links), true);
}
/**