From: Christian Weiske Date: Tue, 29 Aug 2017 19:10:55 +0000 (+0200) Subject: Revert "Fixed bad owner/user config, causing pastes to fail with 'Please tell me... X-Git-Tag: v0.8.1~3 X-Git-Url: https://git.cweiske.de/phorkie.git/commitdiff_plain/2b8fb511b064b375c554785f948840faaa63f9e2?ds=sidebyside Revert "Fixed bad owner/user config, causing pastes to fail with 'Please tell me who you are'" This reverts commit b0396671c6aad090e6b9b5bc9d6b6886b9f0d4e3. The owner.* configuration is custom-made by phorkie. If we use user.*, anonymous commits automatically get the user.* settings which we do not want. Resolves: https://github.com/cweiske/phorkie/issues/27 --- diff --git a/src/phorkie/Repository/Setup.php b/src/phorkie/Repository/Setup.php index d62cdb8..43a8500 100644 --- a/src/phorkie/Repository/Setup.php +++ b/src/phorkie/Repository/Setup.php @@ -41,11 +41,11 @@ CDE //keep track of owner $vc->getCommand('config') - ->addArgument('user.name') + ->addArgument('owner.name') ->addArgument($_SESSION['name']) ->execute(); $vc->getCommand('config') - ->addArgument('user.email') + ->addArgument('owner.email') ->addArgument($_SESSION['email']) ->execute(); }