summaryrefslogtreecommitdiffstats
path: root/modules/news.inc.php
diff options
context:
space:
mode:
authorJonathan Bauer2014-06-23 16:13:50 +0200
committerJonathan Bauer2014-06-23 16:13:50 +0200
commit4980a8cb85562949accfe185472d2d22be67a831 (patch)
treec57f89e4085c42dbd5f16d222f635931d58b5310 /modules/news.inc.php
parentimproved news action handling, restore the form fields if something went wron... (diff)
downloadslx-admin-4980a8cb85562949accfe185472d2d22be67a831.tar.gz
slx-admin-4980a8cb85562949accfe185472d2d22be67a831.tar.xz
slx-admin-4980a8cb85562949accfe185472d2d22be67a831.zip
minor
Diffstat (limited to 'modules/news.inc.php')
-rw-r--r--modules/news.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/news.inc.php b/modules/news.inc.php
index c94331e0..2f169fb5 100644
--- a/modules/news.inc.php
+++ b/modules/news.inc.php
@@ -54,7 +54,7 @@ class Page_News extends Page
Request::post('news-title') ? $this->newsTitle = Request::post('news-title') : $this->newsTitle = false;
Request::post('news-content') ? $this->newsContent = Request::post('news-content') : $this->newsContent = false;
} else {
- Message::addSuccess('news-set-success');
+ Message::addSuccess('news-save-success');
Util::redirect('?do=News');
}
} elseif ($action === 'delete') {