From ca6b821cda501af85c87bc3c70f55855c789c63a Mon Sep 17 00:00:00 2001 From: epriestley Date: Sun, 4 May 2014 05:00:14 -0700 Subject: [PATCH] Minor, fix undefined variable during Passphrase creation. --- .../controller/PassphraseCredentialEditController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/applications/passphrase/controller/PassphraseCredentialEditController.php b/src/applications/passphrase/controller/PassphraseCredentialEditController.php index 92b62b8062..fc6a8b8083 100644 --- a/src/applications/passphrase/controller/PassphraseCredentialEditController.php +++ b/src/applications/passphrase/controller/PassphraseCredentialEditController.php @@ -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;