summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-02-10 18:32:35 +0300
committerAndrew Dolgov <[email protected]>2010-02-10 18:32:35 +0300
commite258bceb68558f4c43e61b2e133ade4b89b6c19a (patch)
treeb97b2710c9ad3578edcd82934bec34f02ae4b9a6 /modules
parentd43f7837753b3d3f66b8368f35fdc6622b0bc5fb (diff)
increase maximum custom icon size
Diffstat (limited to 'modules')
-rw-r--r--modules/pref-feeds.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pref-feeds.php b/modules/pref-feeds.php
index 0ffecf116..fc72c01f2 100644
--- a/modules/pref-feeds.php
+++ b/modules/pref-feeds.php
@@ -33,7 +33,7 @@
$feed_id = db_escape_string($_REQUEST["feed_id"]);
if (is_file($icon_file) && $feed_id) {
- if (filesize($icon_file) < 2000) {
+ if (filesize($icon_file) < 20000) {
$result = db_query($link, "SELECT id FROM ttrss_feeds
WHERE id = '$feed_id' AND owner_uid = ". $_SESSION["uid"]);