diff options
| author | Lester Caine <lester@lsces.co.uk> | 2026-05-14 09:55:19 +0100 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2026-05-14 09:55:19 +0100 |
| commit | 513bc9e03522f0bfc0e307a8e40a517e746de2bc (patch) | |
| tree | bed44d24c1ef1ee8d3801b74fe0fac68e1f779f4 /smartyplugins | |
| parent | 70ebf6a972f511a904a7775ec792dc2523bf3e13 (diff) | |
| download | users-513bc9e03522f0bfc0e307a8e40a517e746de2bc.tar.gz users-513bc9e03522f0bfc0e307a8e40a517e746de2bc.tar.bz2 users-513bc9e03522f0bfc0e307a8e40a517e746de2bc.zip | |
php-cs-fixer tidies to php8.5 standards
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'smartyplugins')
| -rw-r--r-- | smartyplugins/function.captcha.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smartyplugins/function.captcha.php b/smartyplugins/function.captcha.php index c52cb46..b11d7d6 100644 --- a/smartyplugins/function.captcha.php +++ b/smartyplugins/function.captcha.php @@ -13,7 +13,7 @@ function smarty_function_captcha( $pParams, &$gBitSmarty ) { if( $gBitSystem->isFeatureActive('users_register_recaptcha') ) { require_once USERS_PKG_INCLUDE_PATH.'recaptcha/autoload.php'; - if( $recapKey = $gBitSystem->getConfig( 'users_register_recaptcha_secret_key' ) ) { + if( $recapKey = $gBitSystem->getConfig( 'users_register_recaptcha_secret_key' ) ) { $recaptcha = new \ReCaptcha\ReCaptcha( $recapKey ); } } |
