Move Core\Session::remove() to DI::session()->remove()
This commit is contained in:
@@ -34,11 +34,6 @@ class Session
|
|||||||
public static $exists = false;
|
public static $exists = false;
|
||||||
public static $expire = 180000;
|
public static $expire = 180000;
|
||||||
|
|
||||||
public static function remove($name)
|
|
||||||
{
|
|
||||||
DI::session()->remove($name);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function clear()
|
public static function clear()
|
||||||
{
|
{
|
||||||
DI::session()->clear();
|
DI::session()->clear();
|
||||||
|
|||||||
@@ -22,7 +22,6 @@
|
|||||||
namespace Friendica\Module\Settings\TwoFactor;
|
namespace Friendica\Module\Settings\TwoFactor;
|
||||||
|
|
||||||
use Friendica\Core\Renderer;
|
use Friendica\Core\Renderer;
|
||||||
use Friendica\Core\Session;
|
|
||||||
use Friendica\DI;
|
use Friendica\DI;
|
||||||
use Friendica\Network\HTTPException\FoundException;
|
use Friendica\Network\HTTPException\FoundException;
|
||||||
use Friendica\Security\TwoFactor\Model\AppSpecificPassword;
|
use Friendica\Security\TwoFactor\Model\AppSpecificPassword;
|
||||||
@@ -64,7 +63,7 @@ class Index extends BaseSettings
|
|||||||
RecoveryCode::deleteForUser(local_user());
|
RecoveryCode::deleteForUser(local_user());
|
||||||
DI::pConfig()->delete(local_user(), '2fa', 'secret');
|
DI::pConfig()->delete(local_user(), '2fa', 'secret');
|
||||||
DI::pConfig()->delete(local_user(), '2fa', 'verified');
|
DI::pConfig()->delete(local_user(), '2fa', 'verified');
|
||||||
Session::remove('2fa');
|
DI::session()->remove('2fa');
|
||||||
|
|
||||||
DI::sysmsg()->addInfo(DI::l10n()->t('Two-factor authentication successfully disabled.'));
|
DI::sysmsg()->addInfo(DI::l10n()->t('Two-factor authentication successfully disabled.'));
|
||||||
DI::baseUrl()->redirect('settings/2fa');
|
DI::baseUrl()->redirect('settings/2fa');
|
||||||
|
|||||||
Reference in New Issue
Block a user