From 78fb21d941b1af97edb86f1677fd3f5a0dbc56ff Mon Sep 17 00:00:00 2001 From: vincent-peugnet Date: Fri, 7 Feb 2020 14:40:40 +0100 Subject: fix default body in config- admin --- app/class/Config.php | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'app/class/Config.php') diff --git a/app/class/Config.php b/app/class/Config.php index 6ddb3e4..fa9082f 100644 --- a/app/class/Config.php +++ b/app/class/Config.php @@ -21,7 +21,6 @@ abstract class Config protected static $notpublishedpass = false; protected static $alertcss = false; protected static $defaultbody = '%HEADER%'. PHP_EOL .PHP_EOL . '%NAV%'. PHP_EOL .PHP_EOL . '%ASIDE%'. PHP_EOL .PHP_EOL . '%MAIN%'. PHP_EOL .PHP_EOL . '%FOOTER%'; - protected static $defaultpage = ''; protected static $defaultfavicon = ''; protected static $defaultthumbnail = ''; protected static $analytics = ''; @@ -195,11 +194,6 @@ abstract class Config return self::$defaultbody; } - public static function defaultpage() - { - return self::$defaultpage; - } - public static function defaultfavicon() { return self::$defaultfavicon; @@ -376,13 +370,6 @@ abstract class Config } } - public static function setdefaultpage($defaultpage) - { - if(is_string($defaultpage)) { - self::$defaultpage = idclean($defaultpage); - } - } - public static function setanalytics($analytics) { if(is_string($analytics) && strlen($analytics) < 25) { -- cgit v1.2.3