aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2021-02-06 12:37:26 +0100
committerGravatar GitHub <noreply@github.com> 2021-02-06 12:37:26 +0100
commit8edce0e2095a4e78599bfdd1b39fc778ec29c720 (patch)
tree45f8952bfa984c1ae7c5b9ceec570e17286134b4
parent23c43b1fbf74288f0f630d77df27fd2c3bbc6cba (diff)
Fix heredoc syntax (#3426)
Fix regression from https://github.com/FreshRSS/FreshRSS/pull/3407 Identifier must not be indented PHP 5.6.36 (cli) (built: Apr 28 2018 21:14:51) Copyright (c) 1997-2016 The PHP Group Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2016, by Zend Technologies PHP Parse error: syntax error, unexpected end of file in lib/lib_rss.php on line 608 Errors parsing lib/lib_rss.php
-rw-r--r--lib/lib_rss.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php
index cf1cd1b50..39ac2c1f8 100644
--- a/lib/lib_rss.php
+++ b/lib/lib_rss.php
@@ -603,5 +603,5 @@ function errorMessage($errorTitle, $error = '') {
<p>More logs can be generated by enabling <code>'environment' => 'development',</code> in <code>./FreshRSS/data/config.php</code></p>
<p>Running the feed update script (with the same user and PHP version as your Web server) might provide other hints, e.g.:
<code>sudo -u www-data /usr/bin/php ./FreshRSS/app/actualize_script.php</code></p>
- MSG;
+MSG;
}