summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-28 14:01:25 +0400
committerAndrew Dolgov <[email protected]>2013-03-28 14:01:25 +0400
commitfcef9eeae008bfb921614a55e6c3589a04ec06ec (patch)
tree152441ed13b6ea0c8946b79ca84b81ee88ead5ac /include
parent0f2c475539037195fe7436ab327c6625fc894e23 (diff)
remove dialogNotice; tweak dialog appearance a bit
Diffstat (limited to 'include')
-rw-r--r--include/functions.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/functions.php b/include/functions.php
index dcaa67e56..c5017cbce 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -2894,19 +2894,19 @@
function format_warning($msg, $id = "") {
global $link;
return "<div class=\"warning\" id=\"$id\">
- <img src=\"images/sign_excl.svg\">$msg</div>";
+ <img src=\"images/sign_excl.svg\"><div class='inner'>$msg</div></div>";
}
function format_notice($msg, $id = "") {
global $link;
return "<div class=\"notice\" id=\"$id\">
- <img src=\"images/sign_info.svg\">$msg</div>";
+ <img src=\"images/sign_info.svg\"><div class='inner'>$msg</div></div>";
}
function format_error($msg, $id = "") {
global $link;
return "<div class=\"error\" id=\"$id\">
- <img src=\"images/sign_excl.svg\">$msg</div>";
+ <img src=\"images/sign_excl.svg\"><div class='inner'>$msg</div></div>";
}
function print_notice($msg) {