Skip to content

Commit

Permalink
Merge branch '0.9.x' of github.com:Froxlor/Froxlor into 0.9.x
Browse files Browse the repository at this point in the history
  • Loading branch information
d00p committed Nov 27, 2018
2 parents 1b63936 + 4760bdd commit 1dc9ea6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/functions/filedir/function.makeCorrectDir.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function makeCorrectDir($dir) {
if (version_compare("5.4.6", PHP_VERSION, ">")) {
assert('is_string($dir) && strlen($dir) > 0 /* $dir does not look like an actual folder name */');
} else {
assert('is_string($dir) && strlen($dir) > 0', 'Value "' . $dir .'" does not look like an actual folder name');
assert((is_string($dir) && strlen($dir) > 0), 'Value "' . $dir .'" does not look like an actual folder name');
}

$dir = trim($dir);
Expand Down

0 comments on commit 1dc9ea6

Please sign in to comment.