summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-18 22:27:05 +0400
committerAndrew Dolgov <[email protected]>2013-04-18 22:27:05 +0400
commit3c200461f81250f7e112149bf9b55245943b42c1 (patch)
tree1d4d476c7f908f74a19f9cbfd6888aeceb205c00 /include
parent6a1f4249241764482f0419e3993fdd875f7e4ad3 (diff)
more notice css tweaks
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 e0c102b38..0908bf8d3 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\">$msg</div>";
+ <span><img src=\"images/sign_excl.svg\"></span><span>$msg</span></div>";
}
function format_notice($msg, $id = "") {
global $link;
return "<div class=\"notice\" id=\"$id\">
- <img src=\"images/sign_info.svg\">$msg</div>";
+ <span><img src=\"images/sign_info.svg\"></span><span>$msg</span></div>";
}
function format_error($msg, $id = "") {
global $link;
return "<div class=\"error\" id=\"$id\">
- <img src=\"images/sign_excl.svg\">$msg</div>";
+ <span><img src=\"images/sign_excl.svg\"></span><span>$msg</span></div>";
}
function print_notice($msg) {