aboutsummaryrefslogtreecommitdiff
path: root/lib/lib_rss.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2016-01-26 19:34:23 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2016-01-26 19:34:23 +0100
commitdfd0b9e9355c1e44e72b95583dd5e730f0ad5230 (patch)
tree0073ca3a0092d6ac57b2edbac3b8e261a2282a9f /lib/lib_rss.php
parentaf942739137cd1c95c052157c1f44ea6d605f4c3 (diff)
Note about PHP 5.2
https://github.com/FreshRSS/FreshRSS/issues/1055
Diffstat (limited to '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 457fada3d..b0189c162 100644
--- a/lib/lib_rss.php
+++ b/lib/lib_rss.php
@@ -15,7 +15,7 @@ if (!function_exists('json_encode')) {
}
}
-if (!function_exists('array_replace_recursive')) {
+if (!function_exists('array_replace_recursive')) { //PHP 5.2
function arr_recurse($array, $array1) {
foreach ($array1 as $key => $value) {
if (!isset($array[$key]) || (isset($array[$key]) && !is_array($array[$key]))) {