From 6e052305d70f4abe0eb643469357f5e4daef61b6 Mon Sep 17 00:00:00 2001 From: "tristan.champomier" Date: Thu, 23 Sep 2021 03:17:42 +0200 Subject: [PATCH] Fixed errors --- lib/system/system_data_source/file/file.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/system/system_data_source/file/file.php b/lib/system/system_data_source/file/file.php index 7ce392f..684474d 100755 --- a/lib/system/system_data_source/file/file.php +++ b/lib/system/system_data_source/file/file.php @@ -121,7 +121,7 @@ class File */ function readAll() { - if( is_array($this-content) ) + if( is_array($this->content) ) return implode ('', $this->content); else if( is_string($this->content) ) return $this->content;