aboutsummaryrefslogtreecommitdiff
path: root/contrib/log.php
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/log.php')
-rw-r--r--contrib/log.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/log.php b/contrib/log.php
index 2ecf1b075..ee6fc09eb 100644
--- a/contrib/log.php
+++ b/contrib/log.php
@@ -216,7 +216,9 @@ if ($start !== null || $stop !== null) {
216 $(".btn-showlevel").removeClass("active"); 216 $(".btn-showlevel").removeClass("active");
217 $("#"+level).addClass("active"); 217 $("#"+level).addClass("active");
218 for (var index = 0; index < types.length; ++index) { 218 for (var index = 0; index < types.length; ++index) {
219 $("."+types[index]).show(); 219 $(".btn-showpeer.active").each(function(){
220 $("."+types[index]+"."+this.id).show();
221 });
220 if (types[index] == level) 222 if (types[index] == level)
221 return; 223 return;
222 } 224 }