summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-18 16:18:20 +0400
committerAndrew Dolgov <[email protected]>2013-04-18 16:18:20 +0400
commit6d9426feae3d80272722de2fda6ee9e0056569ca (patch)
tree9eafc5557f0f9cc4e00c2709d040eeacec373c0a /include
parentbbffc43e4f4c04e5efeb0edcc9851742c2223b1d (diff)
tweak notice/warning/etc display
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 9f890eba7..e0c102b38 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -2925,19 +2925,19 @@
function format_warning($msg, $id = "") {
global $link;
return "<div class=\"warning\" id=\"$id\">
- <img src=\"images/sign_excl.svg\"><div class='inner'>$msg</div></div>";
+ <img src=\"images/sign_excl.svg\">$msg</div>";
}
function format_notice($msg, $id = "") {
global $link;
return "<div class=\"notice\" id=\"$id\">
- <img src=\"images/sign_info.svg\"><div class='inner'>$msg</div></div>";
+ <img src=\"images/sign_info.svg\">$msg</div>";
}
function format_error($msg, $id = "") {
global $link;
return "<div class=\"error\" id=\"$id\">
- <img src=\"images/sign_excl.svg\"><div class='inner'>$msg</div></div>";
+ <img src=\"images/sign_excl.svg\">$msg</div>";
}
function print_notice($msg) {