1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:45:56 +00:00

allow per-feed update method selection

This commit is contained in:
Andrew Dolgov
2008-01-25 18:46:01 +01:00
parent 0dd9c0cf0b
commit 16211ddbf2
3 changed files with 60 additions and 31 deletions

View File

@@ -119,11 +119,17 @@
1440 => __("Daily"),
10080 => __("Weekly"));
$update_method = array(
$update_methods = array(
0 => __("Use default"),
1 => __("Magpie"),
2 => __("SimplePie"));
if (ENABLE_SIMPLEPIE) {
$update_methods[0] .= ' (SimplePie)';
} else {
$update_methods[0] .= ' (Magpie)';
}
$access_level_names = array(
0 => __("User"),
10 => __("Administrator"));