fix search dialog in tag mode
This commit is contained in:
parent
0a6c4846cd
commit
b788b63241
|
@ -2541,7 +2541,7 @@
|
||||||
|
|
||||||
$params = split(":", db_escape_string($_GET["param"]));
|
$params = split(":", db_escape_string($_GET["param"]));
|
||||||
|
|
||||||
$active_feed_id = $params[0];
|
$active_feed_id = sprintf("%d", $params[0]);
|
||||||
$is_cat = $params[1] == "true";
|
$is_cat = $params[1] == "true";
|
||||||
|
|
||||||
print "<table width='100%'><tr><td>Search:</td><td>";
|
print "<table width='100%'><tr><td>Search:</td><td>";
|
||||||
|
@ -2575,7 +2575,7 @@
|
||||||
$cat_preselected = "selected";
|
$cat_preselected = "selected";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (get_pref($link, 'ENABLE_FEED_CATS') && $active_feed_id >= 0) {
|
if (get_pref($link, 'ENABLE_FEED_CATS') && ($active_feed_id > 0 || $is_cat)) {
|
||||||
print "<option $cat_preselected value=\"this_cat\">This category ($feed_cat_title)</option>";
|
print "<option $cat_preselected value=\"this_cat\">This category ($feed_cat_title)</option>";
|
||||||
} else {
|
} else {
|
||||||
print "<option disabled>This category</option>";
|
print "<option disabled>This category</option>";
|
||||||
|
|
Loading…
Reference in New Issue