Skip to content

[BUG] Minz: Undefined property $extensions_enabled #4088

@math-GH

Description

@math-GH

Describe the bug
$extensions_enabled looks like not defined in Minz Configuration.php

grafik

public function removeExtension($ext_name) {
unset(self::$extensions_enabled[$ext_name]);
$legacyKey = array_search($ext_name, self::$extensions_enabled, true);
if ($legacyKey !== false) { //Legacy format FreshRSS < 1.11.1
unset(self::$extensions_enabled[$legacyKey]);
}
}
public function addExtension($ext_name) {
if (!isset(self::$extensions_enabled[$ext_name])) {
self::$extensions_enabled[$ext_name] = true;
}
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    System careEverything related to system care

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions