Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function doChangePassword(array $data, $form) |
||
26 | { |
||
27 | $return = parent::doChangePassword($data, $form); |
||
28 | $provider = Injector::inst()->get(BootstrapMFAProvider::class); |
||
29 | $provider->setMember(Security::getCurrentUser()); |
||
30 | $provider->updateTokens(); |
||
31 | |||
32 | return $return; |
||
33 | } |
||
35 |