1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

This write should also be unguarded, it is not vulnerable to CSRF.

This commit is contained in:
epriestley 2011-08-17 10:12:30 -07:00
parent 88eb6410b3
commit 90be65f6ec

View file

@ -48,7 +48,10 @@ class PhabricatorRepositoryEditController
if (!$repository->getDetail('github-token')) {
$token = substr(base64_encode(Filesystem::readRandomBytes(8)), 0, 8);
$repository->setDetail('github-token', $token);
$unguarded = AphrontWriteGuard::beginScopedUnguardedWrites();
$repository->save();
unset($unguarded);
}
$views['github'] = 'GitHub';