Просмотр исходного кода

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
Alexandre Alapetite 5 лет назад
Родитель
Сommit
8edce0e209
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      lib/lib_rss.php

+ 1 - 1
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;
 }