Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: BasicVault.php
<?php namespace Intervention\HttpAuth\Vault; use Intervention\HttpAuth\AbstractVault; use Intervention\HttpAuth\Directive; use Intervention\HttpAuth\Key; class BasicVault extends AbstractVault { /** * Determine if given key is able to unlock (access) vault. * * @param Key $key * @return bool */ public function unlocksWithKey(Key $key): bool { $username_match = $this->getUsername() == $key->getUsername(); $password_match = $this->getPassword() == $key->getPassword(); return $username_match && $password_match; } /** * Return auth directive * * @return Directive */ public function getDirective(): Directive { return new Directive('basic', [ 'realm' => $this->getRealm(), 'charset' => 'UTF-8', ]); } }