summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php10
1 files changed, 7 insertions, 3 deletions
diff --git a/functions.php b/functions.php
index 6cc3b6785..33a5a9077 100644
--- a/functions.php
+++ b/functions.php
@@ -501,10 +501,14 @@
$auth_login = db_fetch_result($result, 0, "auth_login");
$auth_pass = db_fetch_result($result, 0, "auth_pass");
- if (ENABLE_SIMPLEPIE) {
- $use_simplepie = $update_method != 1;
+ if (ALLOW_SELECT_UPDATE_METHOD) {
+ if (ENABLE_SIMPLEPIE) {
+ $use_simplepie = $update_method != 1;
+ } else {
+ $use_simplepie = $update_method == 2;
+ }
} else {
- $use_simplepie = $update_method == 2;
+ $use_simplepie = ENABLE_SIMPLEPIE;
}
if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {