]> git.wh0rd.org - tt-rss.git/blobdiff - backend.php
allow per-feed update method selection
[tt-rss.git] / backend.php
index 8af861fdc15096070d686e6881821a31fc7ef81a..c8271f4f975396a05a10d9c712a0ef380995f196 100644 (file)
                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"));