diff --git a/views/bootstrap/class.Search.php b/views/bootstrap/class.Search.php
index 89918276c..261ab49d0 100644
--- a/views/bootstrap/class.Search.php
+++ b/views/bootstrap/class.Search.php
@@ -542,6 +542,12 @@ $(document).ready(function() {
callHook('extraTabs');
+ if($tabs) {
+ foreach($tabs as $tabid=>$tab) {
+ echo ''.$tab['title'].'';
+ }
+ }
?>
@@ -1484,6 +1490,14 @@ $(document).ready(function() {
echo "
\n";
}
// }}}
+
+ if($tabs) {
+ foreach($tabs as $tabid=>$tab) {
+ echo '';
+ echo $tab['content'];
+ echo "
\n";
+ }
+ }
?>