diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2005-09-07 08:51:01 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2005-09-07 08:51:01 +0100 |
| commit | ad3cb7108ecae37b0eefad942ef04b0cee473860 (patch) | |
| tree | 6af436f841ef3a96ce02a5c12559b48b38e0b183 | |
| parent | 0c6744067065db59aee2e6da2260dc6e591b52d6 (diff) | |
limitbox now actually works
| -rw-r--r-- | backend.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/backend.php b/backend.php index bf8394b0b..a93ca57b7 100644 --- a/backend.php +++ b/backend.php @@ -360,12 +360,9 @@ $unread_entries = pg_fetch_result($result, 0, "unread_entries"); */ -/* if ($limit < $unread_entries) - $limit = $unread_entries; - if ($limit != "All") { $limit_query_part = "LIMIT " . $limit; - } */ + } $result = pg_query("SELECT id,title,updated,unread,feed_id,marked,link, |