mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
Trim auf Leerzeichen in Addon-Constructor
This commit is contained in:
@@ -37,7 +37,7 @@ class addon extends basis_db
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
$this->aktive_addons = array_filter(explode(";", ACTIVE_ADDONS));
|
||||
$this->aktive_addons = array_filter(array_map('trim', explode(";", ACTIVE_ADDONS)));
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user