search dialog: fix is_cat not parsed properly
This commit is contained in:
parent
91149aab52
commit
1b24f3319a
|
@ -360,7 +360,7 @@
|
|||
$params = explode(":", db_escape_string($_REQUEST["param"]), 2);
|
||||
|
||||
$active_feed_id = sprintf("%d", $params[0]);
|
||||
$is_cat = (bool) $params[1];
|
||||
$is_cat = $params[1] != "false";
|
||||
|
||||
print "<div class=\"dlgSec\">".__('Look for')."</div>";
|
||||
|
||||
|
|
Loading…
Reference in New Issue