diff --git a/inc/class-settings.php b/inc/class-settings.php index 7cf3804..a1526da 100644 --- a/inc/class-settings.php +++ b/inc/class-settings.php @@ -4,7 +4,7 @@ * @author cleverogre * @copyright 2026 CleverOgre * @license GLP-3.0-or-later - * @version 1.2.1 + * @version 1.2.3 * @since 1.0.0 */ @@ -122,7 +122,7 @@ final class Settings { } public static function set_site_key(string $value):bool { - self::get('site_key'); + self::set('site_key', $value); return true; } @@ -131,7 +131,7 @@ final class Settings { } public static function set_secret_key(string $value):bool { - self::get('secret_key'); + self::set('secret_key', $value); return true; }