summaryrefslogtreecommitdiffstats
path: root/inc/message.inc.php
diff options
context:
space:
mode:
authorSimon Rettberg2014-11-19 19:46:19 +0100
committerSimon Rettberg2014-11-19 19:46:19 +0100
commit8434cd9505a9672743908076896e417eddc47693 (patch)
treeb997f9bb147f0ce473704212b9840717a5033bb0 /inc/message.inc.php
parentAdded proxy server settings (diff)
downloadslx-admin-8434cd9505a9672743908076896e417eddc47693.tar.gz
slx-admin-8434cd9505a9672743908076896e417eddc47693.tar.xz
slx-admin-8434cd9505a9672743908076896e417eddc47693.zip
Several minor fixes
- Removed common share setting for now (until properly supported) - Remove extra container div in message display - Support multiline translation strings - Add "next" button on top of file list when creating custom config module
Diffstat (limited to 'inc/message.inc.php')
-rw-r--r--inc/message.inc.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/inc/message.inc.php b/inc/message.inc.php
index 0e054846..2fccb0a0 100644
--- a/inc/message.inc.php
+++ b/inc/message.inc.php
@@ -65,7 +65,6 @@ class Message
return;
}
// Non-Ajax
- if (!self::$flushed) Render::openTag('div', array('class' => 'container'));
foreach (self::$list as $item) {
$message = Dictionary::getMessage($item['id']);
foreach ($item['params'] as $index => $text) {
@@ -74,7 +73,6 @@ class Message
Render::addTemplate('messagebox-' . $item['type'], array('message' => $message));
self::$alreadyDisplayed[] = $item;
}
- if (!self::$flushed) Render::closeTag('div');
self::$list = array();
self::$flushed = true;
}