From 86648149e58f1f87585544f525b3bf92212e60bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Schw=C3=B6rer?= Date: Sat, 18 Jan 2020 12:50:46 +0100 Subject: [PATCH] fix UpdatesLog --- www/internals/modules/updateslog.php | 2 +- www/statics/updates/{_all.php => __all.php} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename www/statics/updates/{_all.php => __all.php} (100%) diff --git a/www/internals/modules/updateslog.php b/www/internals/modules/updateslog.php index 9c7f3da..781c44f 100644 --- a/www/internals/modules/updateslog.php +++ b/www/internals/modules/updateslog.php @@ -16,7 +16,7 @@ class UpdatesLog private function load() { - $all = require (__DIR__ . '/../../statics/blog/__all.php'); + $all = require (__DIR__ . '/../../statics/updates/__all.php'); $this->staticData = array_map(function($a){return self::readSingle($a);}, $all); } diff --git a/www/statics/updates/_all.php b/www/statics/updates/__all.php similarity index 100% rename from www/statics/updates/_all.php rename to www/statics/updates/__all.php