mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-20 17:01:28 +00:00
search dialog: fix is_cat not parsed properly
This commit is contained in:
@@ -360,7 +360,7 @@
|
|||||||
$params = explode(":", db_escape_string($_REQUEST["param"]), 2);
|
$params = explode(":", db_escape_string($_REQUEST["param"]), 2);
|
||||||
|
|
||||||
$active_feed_id = sprintf("%d", $params[0]);
|
$active_feed_id = sprintf("%d", $params[0]);
|
||||||
$is_cat = (bool) $params[1];
|
$is_cat = $params[1] != "false";
|
||||||
|
|
||||||
print "<div class=\"dlgSec\">".__('Look for')."</div>";
|
print "<div class=\"dlgSec\">".__('Look for')."</div>";
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user