summaryrefslogtreecommitdiff
path: root/remind_password.php
diff options
context:
space:
mode:
authorLester Caine <lester@lsces.co.uk>2026-05-14 09:55:19 +0100
committerLester Caine <lester@lsces.co.uk>2026-05-14 09:55:19 +0100
commit513bc9e03522f0bfc0e307a8e40a517e746de2bc (patch)
treebed44d24c1ef1ee8d3801b74fe0fac68e1f779f4 /remind_password.php
parent70ebf6a972f511a904a7775ec792dc2523bf3e13 (diff)
downloadusers-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 'remind_password.php')
-rwxr-xr-xremind_password.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/remind_password.php b/remind_password.php
index 92141af..9ea045d 100755
--- a/remind_password.php
+++ b/remind_password.php
@@ -26,7 +26,7 @@ if( $gBitUser->isRegistered() ) {
$userInfo = '';
$_REQUEST["username"] = strip_tags( urldecode( $_REQUEST["username"]) );
$pLogin = trim( $_REQUEST["username"] );
- if ( strlen ( $pLogin ) ) {
+ if ( strlen ( $pLogin ) ) {
$loginCol = strpos( $pLogin, '@' ) ? 'email' : 'login';
$userInfo = $gBitUser->getUserInfo( [ $loginCol => $pLogin ] );
}