mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-22 04:21:28 +00:00
fix search dialog for categories
This commit is contained in:
@@ -363,10 +363,10 @@
|
||||
|
||||
#$active_feed_id = db_escape_string($_REQUEST["param"]);
|
||||
|
||||
$params = split(":", db_escape_string($_REQUEST["param"]));
|
||||
$params = explode(":", db_escape_string($_REQUEST["param"]), 2);
|
||||
|
||||
$active_feed_id = sprintf("%d", $params[0]);
|
||||
$is_cat = $params[1] == "true";
|
||||
$is_cat = (bool) $params[1];
|
||||
|
||||
print "<div class=\"dlgSec\">".__('Look for')."</div>";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user