diff --git a/e107_plugins/forum/forum_viewforum.php b/e107_plugins/forum/forum_viewforum.php
index efdc54c70..681ebb6be 100644
--- a/e107_plugins/forum/forum_viewforum.php
+++ b/e107_plugins/forum/forum_viewforum.php
@@ -688,12 +688,18 @@ function fadminoptions($thread_info)
$id = intval($thread_info['thread_id']);
$lan = array('stick'=>'Stick','unstick'=>'Unstick','lock'=>"Lock", 'unlock'=>"Unlock");
+ $icon = array(
+ 'unstick' => "",
+ 'stick' => "",
+ 'lock' => "",
+ 'unlock' => "",
+ );
$text .= "
Delete ";
- $text .= "".$lan[$stickUnstick]."";
- $text .= "".$lan[$lockUnlock]." ";
+ $text .= "".$lan[$stickUnstick]." ".$icon[$stickUnstick]."";
+ $text .= "".$lan[$lockUnlock]." ".$icon[$lockUnlock]."";
$text .= "Move ";
diff --git a/e107_plugins/forum/shortcodes/batch/view_shortcodes.php b/e107_plugins/forum/shortcodes/batch/view_shortcodes.php
index 6637c1cb2..294ef55b6 100644
--- a/e107_plugins/forum/shortcodes/batch/view_shortcodes.php
+++ b/e107_plugins/forum/shortcodes/batch/view_shortcodes.php
@@ -514,7 +514,7 @@ class plugin_forum_view_shortcodes extends e_shortcode
}
else
{
- $text .= " $this->postInfo['post_id']))."'>".LAN_FORUM_2043."";
+ $text .= " $this->postInfo['post_id']))."'>".LAN_FORUM_2043." ";
}
}
diff --git a/e107_themes/bootstrap/theme.php b/e107_themes/bootstrap/theme.php
index 99be24131..25061a583 100644
--- a/e107_themes/bootstrap/theme.php
+++ b/e107_themes/bootstrap/theme.php
@@ -37,6 +37,7 @@ else
e107::css('bootstrap','bootstrap-responsive.min.css');
e107::css('bootstrap','jquery-ui.custom.css');
+e107::css('url', "//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css");
e107::css('theme', 'js/google-code-prettify/prettify.css');
e107::js('theme', "js/google-code-prettify/prettify.js");