Skip to content

Commit

Permalink
Fix syntax (joomla#43818)
Browse files Browse the repository at this point in the history
  • Loading branch information
Quy authored and dgrammatiko committed Aug 11, 2024
1 parent f66607c commit 12aeae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion administrator/components/com_users/src/Helper/Mfa.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public static function getConfigurationInterface(User $user): ?string
/** @var CMSApplication $app */
$app = Factory::getApplication();

if (!$app->getInput()->getCmd('option', '') === 'com_users') {
if ($app->getInput()->getCmd('option', '') !== 'com_users') {
$app->getLanguage()->load('com_users');
$app->getDocument()
->getWebAssetManager()
Expand Down

0 comments on commit 12aeae3

Please sign in to comment.