ソースを参照

Note about PHP 5.2

https://github.com/FreshRSS/FreshRSS/issues/1055
Alexandre Alapetite 10 年 前
コミット
dfd0b9e935
1 ファイル変更1 行追加1 行削除
  1. 1 1
      lib/lib_rss.php

+ 1 - 1
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]))) {