summaryrefslogtreecommitdiff
path: root/modules/pref-feeds.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-01-25 18:50:29 +0100
committerAndrew Dolgov <[email protected]>2008-01-25 18:50:29 +0100
commit34459667e259eb01257a73a4c30bff0ba2c3b3d5 (patch)
tree7eb1357ba017d29391872a539e84468f3059814c /modules/pref-feeds.php
parent16211ddbf24c978d88d8eb434ab57d7824827dbd (diff)
new option: ALLOW_SELECT_UPDATE_METHOD (bump config ver)
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"));