From 1917adb98051610ff6e4caa4ebe5f66e8640a1d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Thu, 7 Mar 2019 17:35:02 +0100 Subject: [PATCH] Update stats.class.php The property _lastfetchdate is declared private in Stats and cannot be accessed from this context. --- htdocs/core/class/stats.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/stats.class.php b/htdocs/core/class/stats.class.php index b06f1deb4c3..07d644f083d 100644 --- a/htdocs/core/class/stats.class.php +++ b/htdocs/core/class/stats.class.php @@ -30,7 +30,7 @@ abstract class Stats { protected $db; - private $_lastfetchdate=array(); // Dates of cache file read by methods + protected $_lastfetchdate=array(); // Dates of cache file read by methods public $cachefilesuffix=''; // Suffix to add to name of cache file (to avoid file name conflicts) /**