1.14.15 breaks with Parse error: syntax error, unexpected ‘)’
-
Parse error: syntax error, unexpected ‘)’ in /wp-content/plugins/two-factor-authentication/simba-tfa/providers/totp/loader.php on line 734
Fix: Remove training ‘,’ at line 733, patch:
.../two-factor-authentication/simba-tfa/providers/totp/loader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-content/plugins/two-factor-authentication/simba-tfa/providers/totp/loader.php b/wp-content/plugins/two-factor-authentication/simba-tfa/providers/totp/loader.php index 6d53212a0b..2fdd94a633 100644 --- a/wp-content/plugins/two-factor-authentication/simba-tfa/providers/totp/loader.php +++ b/wp-content/plugins/two-factor-authentication/simba-tfa/providers/totp/loader.php @@ -730,7 +730,7 @@ class Simba_TFA_Provider_totp { if (empty($user_results)) { return new WP_Error( 'failed_to_get_priv_keys', - __('Encrypt secrets feature not enabled: unable to get private keys from the database.', 'two-factor-authentication'), + __('Encrypt secrets feature not enabled: unable to get private keys from the database.', 'two-factor-authentication') ); }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘1.14.15 breaks with Parse error: syntax error, unexpected ‘)’’ is closed to new replies.