Skip to content

Commit

Permalink
Fix. UpdaterScripts. Fix type on update_option call.
Browse files Browse the repository at this point in the history
  • Loading branch information
svfcode authored and alexandergull committed Jul 17, 2024
1 parent 56c7f17 commit 1cab0b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/CleantalkSP/Updater/UpdaterScripts.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ public static function updateTo_2_8_0() //phpcs:ignore PSR1.Methods.CamelCapsMet

public static function updateTo_2_13_0() //phpcs:ignore PSR1.Methods.CamelCapsMethodName.NotCamelCaps
{
update_option('spbc_plugins', array(), 'no');
update_option('spbc_themes', array(), 'no');
update_option('spbc_plugins', array(), false);
update_option('spbc_themes', array(), false);
}

public static function updateTo_2_14_0() //phpcs:ignore PSR1.Methods.CamelCapsMethodName.NotCamelCaps
Expand Down

0 comments on commit 1cab0b9

Please sign in to comment.