diff options
| author | Andrew Dolgov <noreply@madoka.volgo-balt.ru> | 2017-04-26 15:29:22 +0300 |
|---|---|---|
| committer | Andrew Dolgov <noreply@madoka.volgo-balt.ru> | 2017-04-26 15:29:22 +0300 |
| commit | 7b55001eeeb326323d020dcfac2f864f8c3ad633 (patch) | |
| tree | 92b09e0349b49b1741a8b45172974addb136fbc5 /update.php | |
| parent | b49bb441f4fc722911794e80366d37df626a5613 (diff) | |
fix various issues reported by static analysis
update gitlab-ci config
Diffstat (limited to 'update.php')
| -rwxr-xr-x | update.php | 2 |
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); } |