no use the recoveryPassword var instead of accessing the POST array

This commit is contained in:
Björn Schießle 2013-05-24 18:37:58 +02:00
parent 4911305887
commit f56802a437
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ class Helper
} else { // get recovery key and check the password
$util = new \OCA\Encryption\Util( new \OC_FilesystemView( '/' ), \OCP\User::getUser() );
$return = $util->checkRecoveryPassword( $_POST['recoveryPassword'] );
$return = $util->checkRecoveryPassword( $recoveryPassword );
if ( $return ) {
\OC_Appconfig::setValue( 'files_encryption', 'recoveryAdminEnabled', 1 );
}