From 34459667e259eb01257a73a4c30bff0ba2c3b3d5 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 25 Jan 2008 18:50:29 +0100 Subject: new option: ALLOW_SELECT_UPDATE_METHOD (bump config ver) --- modules/pref-feeds.php | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) (limited to 'modules/pref-feeds.php') 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 ""; - $update_method = db_fetch_result($result, 0, "update_method"); + if (ALLOW_SELECT_UPDATE_METHOD) { - print "".__('Update using:').""; - - print ""; - - print_select_hash("update_method", $update_method, $update_methods, - "class=\"iedit\""); - - print ""; + $update_method = db_fetch_result($result, 0, "update_method"); + + print "".__('Update using:').""; + + print ""; + + print_select_hash("update_method", $update_method, $update_methods, + "class=\"iedit\""); + + print ""; + } $auth_login = htmlspecialchars(db_fetch_result($result, 0, "auth_login")); -- cgit v1.2.3-54-g00ecf