FIX avoid spaces in file name
This commit is contained in:
parent
85f15b5f69
commit
1348c03ca0
@ -265,8 +265,8 @@ $db->close();
|
|||||||
*/
|
*/
|
||||||
function getActivatedExtensions()
|
function getActivatedExtensions()
|
||||||
{
|
{
|
||||||
$file = getConfigFilePath();
|
$file = trim(getConfigFilePath());
|
||||||
$handle = fopen(GetConfigFilePath(), "r");
|
$handle = fopen($file, "r");
|
||||||
$content = fread($handle, filesize($file));
|
$content = fread($handle, filesize($file));
|
||||||
|
|
||||||
fclose($handle);
|
fclose($handle);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user