diff options
author | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2010-01-16 10:15:19 +0000 |
---|---|---|
committer | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2010-01-16 10:15:19 +0000 |
commit | d5bb0009986f868d719a29cd87c0e9520bd94df7 (patch) | |
tree | 97f973219b96bafcd40e3a25b498d968a46dd1f7 /data | |
parent | 9bcab8c363da59f61086ec6ac9b7d77a75c5c8a4 (diff) | |
download | semanticscuttle-d5bb0009986f868d719a29cd87c0e9520bd94df7.tar.gz semanticscuttle-d5bb0009986f868d719a29cd87c0e9520bd94df7.tar.bz2 |
Part of bug #2928950: add support for "count" parameter in rss feed and add config options for default and maximum rss feed entries
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@591 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'data')
-rw-r--r-- | data/config.default.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/data/config.default.php b/data/config.default.php index 69d2c25..8dd61a5 100644 --- a/data/config.default.php +++ b/data/config.default.php @@ -379,6 +379,22 @@ $defaultRecentDays = 14; $defaultOrderBy = 'date_desc'; /** + * Number of entries that are shown in + * the RSS feed by default. + * + * @var integer + */ +$defaultRssEntries = 15; + +/** + * Number of entries the RSS puts out + * at maximum. + * + * @var integer + */ +$maxRssEntries = 100; + +/** * Redirect all bookmarks through $url_redir to improve privacy. * * @var boolean |