diff options
Diffstat (limited to 'contrib/log.php')
-rw-r--r-- | contrib/log.php | 4 |
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) { $(".btn-showlevel").removeClass("active"); $("#"+level).addClass("active"); for (var index = 0; index < types.length; ++index) { - $("."+types[index]).show(); + $(".btn-showpeer.active").each(function(){ + $("."+types[index]+"."+this.id).show(); + }); if (types[index] == level) return; } |