summaryrefslogtreecommitdiff
path: root/modules/pref-feeds.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/pref-feeds.php')
-rw-r--r--modules/pref-feeds.php21
1 files changed, 12 insertions, 9 deletions
diff --git a/modules/pref-feeds.php b/modules/pref-feeds.php
index 749f4dc04..932302150 100644
--- a/modules/pref-feeds.php
+++ b/modules/pref-feeds.php
@@ -260,16 +260,19 @@
print "</td>";
- $update_method = db_fetch_result($result, 0, "update_method");
+ if (ALLOW_SELECT_UPDATE_METHOD) {
- print "<tr><td>".__('Update using:')."</td>";
-
- print "<td>";
-
- print_select_hash("update_method", $update_method, $update_methods,
- "class=\"iedit\"");
-
- print "</td>";
+ $update_method = db_fetch_result($result, 0, "update_method");
+
+ print "<tr><td>".__('Update using:')."</td>";
+
+ print "<td>";
+
+ print_select_hash("update_method", $update_method, $update_methods,
+ "class=\"iedit\"");
+
+ print "</td>";
+ }
$auth_login = htmlspecialchars(db_fetch_result($result, 0, "auth_login"));