[admin settings] only retrieve log file size if file exists
* fixes #17467
This commit is contained in:
parent
b5ea97ef81
commit
8184527760
|
@ -46,7 +46,10 @@ $entriesRemaining = count($entries) > $numEntriesToLoad;
|
||||||
$entries = array_slice($entries, 0, $numEntriesToLoad);
|
$entries = array_slice($entries, 0, $numEntriesToLoad);
|
||||||
$logFilePath = OC_Log_Owncloud::getLogFilePath();
|
$logFilePath = OC_Log_Owncloud::getLogFilePath();
|
||||||
$doesLogFileExist = file_exists($logFilePath);
|
$doesLogFileExist = file_exists($logFilePath);
|
||||||
$logFileSize = filesize($logFilePath);
|
$logFileSize = 0;
|
||||||
|
if($doesLogFileExist) {
|
||||||
|
$logFileSize = filesize($logFilePath);
|
||||||
|
}
|
||||||
$config = \OC::$server->getConfig();
|
$config = \OC::$server->getConfig();
|
||||||
$appConfig = \OC::$server->getAppConfig();
|
$appConfig = \OC::$server->getAppConfig();
|
||||||
$request = \OC::$server->getRequest();
|
$request = \OC::$server->getRequest();
|
||||||
|
|
Loading…
Reference in New Issue