Merge pull request #1893 from annando/1509-lockpath

Avoiding errors when checking for the lockpath
This commit is contained in:
Tobias Diekershoff 2015-09-19 13:53:13 +02:00
commit 0a41a8127b
1 changed files with 5 additions and 1 deletions

View File

@ -1811,7 +1811,11 @@ function get_lockpath() {
if ($temppath != "") {
$lockpath = $temppath."/lock";
if (!is_dir($lockpath))
mkdir($lockpath);
elseif (!is_writable($lockpath))
$lockpath = $temppath;
if (is_dir($lockpath) AND is_writable($lockpath)) {
set_config("system", "lockpath", $lockpath);