misc code cleanup
This commit is contained in:
parent
a95da1368e
commit
c771953ddf
|
@ -61,11 +61,6 @@
|
||||||
|
|
||||||
print "<p>".__("Showing top 25 registered feeds, sorted by popularity:")."</p>";
|
print "<p>".__("Showing top 25 registered feeds, sorted by popularity:")."</p>";
|
||||||
|
|
||||||
# $result = db_query($link, "SELECT feed_url,count(id) AS subscribers
|
|
||||||
# FROM ttrss_feeds
|
|
||||||
# WHERE auth_login = '' AND auth_pass = '' AND private = false
|
|
||||||
# GROUP BY feed_url ORDER BY subscribers DESC LIMIT 25");
|
|
||||||
|
|
||||||
$owner_uid = $_SESSION["uid"];
|
$owner_uid = $_SESSION["uid"];
|
||||||
|
|
||||||
$result = db_query($link, "SELECT feed_url,COUNT(id) AS subscribers
|
$result = db_query($link, "SELECT feed_url,COUNT(id) AS subscribers
|
||||||
|
@ -859,14 +854,6 @@
|
||||||
onclick=\"javascript:updateFeedList()\" value=\"".__('Search')."\">
|
onclick=\"javascript:updateFeedList()\" value=\"".__('Search')."\">
|
||||||
</div>";
|
</div>";
|
||||||
|
|
||||||
/* print "<input id=\"fadd_link\"
|
|
||||||
onkeyup=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\"
|
|
||||||
onchange=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\"
|
|
||||||
size=\"40\">
|
|
||||||
<input type=\"submit\" class=\"button\"
|
|
||||||
disabled=\"true\" id=\"fadd_submit_btn\"
|
|
||||||
onclick=\"addFeed()\" value=\"".__('Subscribe')."\">"; */
|
|
||||||
|
|
||||||
print "<input onclick=\"javascript:displayDlg('quickAddFeed')\"
|
print "<input onclick=\"javascript:displayDlg('quickAddFeed')\"
|
||||||
type=\"submit\" id=\"subscribe_to_feed_btn\"
|
type=\"submit\" id=\"subscribe_to_feed_btn\"
|
||||||
class=\"button\" value=\"".__('Subscribe to feed')."\">";
|
class=\"button\" value=\"".__('Subscribe to feed')."\">";
|
||||||
|
@ -1128,26 +1115,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
print "</select>";
|
print "</select>";
|
||||||
|
|
||||||
/* print "<input type=\"submit\" class=\"button\" disabled=\"true\"
|
|
||||||
onclick=\"javascript:editSelectedFeed()\" value=\"".__('Edit')."\">
|
|
||||||
<input type=\"submit\" class=\"button\" disabled=\"true\"
|
|
||||||
onclick=\"javascript:removeSelectedFeeds()\"
|
|
||||||
value=\"".__('Unsubscribe')."\">"; */
|
|
||||||
|
|
||||||
// if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
|
||||||
|
|
||||||
/* print " <input type=\"submit\" class=\"button\"
|
|
||||||
onclick=\"javascript:editFeedCats()\" value=\"".
|
|
||||||
__("Edit categories")."\">"; */
|
|
||||||
|
|
||||||
# print " | ";
|
|
||||||
|
|
||||||
// }
|
|
||||||
} else {
|
|
||||||
|
|
||||||
// print "<p>No feeds defined.</p>";
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
print "<h3>".__('OPML')."</h3>
|
print "<h3>".__('OPML')."</h3>
|
||||||
|
|
|
@ -28,8 +28,6 @@
|
||||||
print "<input type=\"hidden\" name=\"id\" value=\"$filter_id\">";
|
print "<input type=\"hidden\" name=\"id\" value=\"$filter_id\">";
|
||||||
print "<input type=\"hidden\" name=\"subop\" value=\"editSave\">";
|
print "<input type=\"hidden\" name=\"subop\" value=\"editSave\">";
|
||||||
|
|
||||||
// print "<div class=\"notice\"><b>Note:</b> filter will only apply to new articles.</div>";
|
|
||||||
|
|
||||||
$result = db_query($link, "SELECT id,description
|
$result = db_query($link, "SELECT id,description
|
||||||
FROM ttrss_filter_types ORDER BY description");
|
FROM ttrss_filter_types ORDER BY description");
|
||||||
|
|
||||||
|
@ -374,7 +372,6 @@
|
||||||
$onclick = "onclick='editFilter($filter_id)' title='".__('Click to edit')."'";
|
$onclick = "onclick='editFilter($filter_id)' title='".__('Click to edit')."'";
|
||||||
|
|
||||||
print "<td $onclick>" . $line["reg_exp"] . "</td>";
|
print "<td $onclick>" . $line["reg_exp"] . "</td>";
|
||||||
|
|
||||||
print "<td $onclick>" . $line["feed_title"] . "</td>";
|
print "<td $onclick>" . $line["feed_title"] . "</td>";
|
||||||
|
|
||||||
$inverse_label = "";
|
$inverse_label = "";
|
||||||
|
@ -384,10 +381,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
print "<td $onclick>" . $line["filter_type_descr"] . "$inverse_label</td>";
|
print "<td $onclick>" . $line["filter_type_descr"] . "$inverse_label</td>";
|
||||||
|
|
||||||
/* print "<td><a href=\"javascript:editFilter($filter_id);\">" .
|
|
||||||
$line["action_description"]."</td>"; */
|
|
||||||
|
|
||||||
print "<td $onclick>" . $line["action_param"] . "</td>";
|
print "<td $onclick>" . $line["action_param"] . "</td>";
|
||||||
|
|
||||||
print "</tr>";
|
print "</tr>";
|
||||||
|
|
Loading…
Reference in New Issue