summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-04-26 15:29:22 +0300
committerAndrew Dolgov <[email protected]>2017-04-26 15:29:22 +0300
commit7b55001eeeb326323d020dcfac2f864f8c3ad633 (patch)
tree92b09e0349b49b1741a8b45172974addb136fbc5 /update.php
parentb49bb441f4fc722911794e80366d37df626a5613 (diff)
fix various issues reported by static analysis
update gitlab-ci config
Diffstat (limited to 'update.php')
-rwxr-xr-xupdate.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/update.php b/update.php
index 23289f1d1..2245ea02c 100755
--- a/update.php
+++ b/update.php
@@ -401,7 +401,7 @@
$_REQUEST['xdebug'] = 1;
- $rc = is_object(update_rss_feed($feed)) ? 0 : 1;
+ $rc = update_rss_feed($feed) != false ? 0 : 1;
exit($rc);
}