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

Minor, fix undefined variable during Passphrase creation.

This commit is contained in:
epriestley 2014-05-04 05:00:14 -07:00
parent d7b7b19337
commit ca6b821cda

View file

@ -69,6 +69,8 @@ final class PassphraseCredentialEditController extends PassphraseController {
$v_username = $credential->getUsername();
$e_username = true;
$v_is_locked = false;
$bullet = "\xE2\x80\xA2";
$v_secret = $credential->getSecretID() ? str_repeat($bullet, 32) : null;