Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
After the latest commit a / is missing for a comment in the executiontrait class
  • Loading branch information
AlternateIf committed Oct 31, 2019
1 parent 9201e12 commit 6fc3d03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ExecutionTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ protected static function checkExecutingUser($allowedUsers = [])
}
if ($owner == false) {
$configFile = \Pimcore\Config::locateConfigFile('system.php');
if (file_exists($configFile)) { /file must exist, otherwise fileowner will fail.
if (file_exists($configFile)) { //file must exist, otherwise fileowner will fail.
$owner = fileowner($configFile);
}
}
Expand Down

0 comments on commit 6fc3d03

Please sign in to comment.