diff options
author | Simon Rettberg | 2019-11-12 11:31:46 +0100 |
---|---|---|
committer | Simon Rettberg | 2019-11-12 11:31:46 +0100 |
commit | dd48d827a1bffe3825ecc2a34bedb7a641d92613 (patch) | |
tree | eabab6cd99a9973b2db947b29c3529ca42958fd0 /modules-available/runmode/inc | |
parent | [statistics] FIX STUFF (diff) | |
download | slx-admin-dd48d827a1bffe3825ecc2a34bedb7a641d92613.tar.gz slx-admin-dd48d827a1bffe3825ecc2a34bedb7a641d92613.tar.xz slx-admin-dd48d827a1bffe3825ecc2a34bedb7a641d92613.zip |
[sysconfig/runmode] Remove "noSysconfig" functionality
Was of limited use and not properly implemented anyways.
Diffstat (limited to 'modules-available/runmode/inc')
-rw-r--r-- | modules-available/runmode/inc/runmode.inc.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/modules-available/runmode/inc/runmode.inc.php b/modules-available/runmode/inc/runmode.inc.php index 174fb675..96f532d7 100644 --- a/modules-available/runmode/inc/runmode.inc.php +++ b/modules-available/runmode/inc/runmode.inc.php @@ -272,10 +272,6 @@ class RunModeModuleConfig */ public $isClient = false; /** - * @var bool If true, config.tgz should not be downloaded by the client - */ - public $noSysconfig = false; - /** * @var bool Allow adding and removing machines to this mode via the generic form */ public $allowGenericEditor = true; @@ -300,7 +296,6 @@ class RunModeModuleConfig $this->loadType($data, 'getModeName', 'string'); $this->loadType($data, 'configHook', 'string'); $this->loadType($data, 'isClient', 'boolean'); - $this->loadType($data, 'noSysconfig', 'boolean'); $this->loadType($data, 'allowGenericEditor', 'boolean'); $this->loadType($data, 'deleteUrlSnippet', 'string'); $this->loadType($data, 'permission', 'string'); |