From: Andrew Dolgov Date: Sun, 18 Jan 2009 09:22:52 +0000 (+0100) Subject: disable old-style label editor call for new labels X-Git-Tag: 1.3.0~102 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=f11b8a3480f3f72b6396f0a9e6e1c1d3aaf30543;p=tt-rss.git disable old-style label editor call for new labels --- diff --git a/tt-rss.js b/tt-rss.js index bac3fd9d..7c5f8e08 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -792,7 +792,7 @@ function editFeedDlg(feed) { return; } - if ((feed <= 0 && feed > -10) || activeFeedIsCat() || tagsAreDisplayed()) { + if ((feed <= 0) || activeFeedIsCat() || tagsAreDisplayed()) { alert(__("You can't edit this kind of feed.")); return; }