summaryrefslogtreecommitdiffstats
path: root/library/Pbs/Notifier.php
diff options
context:
space:
mode:
authorSimon2011-03-16 17:40:13 +0100
committerSimon2011-03-16 17:40:13 +0100
commit43e85963bc133666017d2946c03884d2f77a016a (patch)
tree311a8d33a35a53c8faa63906d76edb6f753e968c /library/Pbs/Notifier.php
parentMerge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2 (diff)
downloadpbs2-43e85963bc133666017d2946c03884d2f77a016a.tar.gz
pbs2-43e85963bc133666017d2946c03884d2f77a016a.tar.xz
pbs2-43e85963bc133666017d2946c03884d2f77a016a.zip
Client Controller fertig
Diffstat (limited to 'library/Pbs/Notifier.php')
-rw-r--r--library/Pbs/Notifier.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/Pbs/Notifier.php b/library/Pbs/Notifier.php
index f2f889b..256aea4 100644
--- a/library/Pbs/Notifier.php
+++ b/library/Pbs/Notifier.php
@@ -12,7 +12,7 @@ class Pbs_Notifier{
$result = "<div class='errorbox'>Not allowed to delete this</div>";
break;
case "ok":
- $result = "<div class='checkbox'>Delete sucessful</div>";
+ $result = "<div class='okbox'>Delete sucessful</div>";
break;
case "error":
$result = "<div class='warningbox'>Delete failed</div>";
@@ -25,7 +25,7 @@ class Pbs_Notifier{
$result = "<div class='errorbox'>Not allowed to modify this</div>";
break;
case "ok":
- $result = "<div class='checkbox'>Modify sucessful</div>";
+ $result = "<div class='okbox'>Modify sucessful</div>";
break;
case "error":
$result = "<div class='warningbox'>Modify failed</div>";
@@ -38,7 +38,7 @@ class Pbs_Notifier{
$result = "<div class='errorbox'>Not allowed to create this</div>";
break;
case "ok":
- $result = "<div class='checkbox'>Creation sucessful</div>";
+ $result = "<div class='okbox'>Creation sucessful</div>";
break;
case "error":
$result = "<div class='warningbox'>Creation failed</div>";