summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorLester Caine <lester@lsces.co.uk>2026-05-14 09:49:08 +0100
committerLester Caine <lester@lsces.co.uk>2026-05-14 09:49:08 +0100
commitef793a806a8d5a479c29c061780c56f62c4d3535 (patch)
treedabe63be7a0cf383196bccfeb8743310e1d28fba /modules
parent39508ee5ad8908fa720db48fcf7923f309fdce9d (diff)
downloadboards-ef793a806a8d5a479c29c061780c56f62c4d3535.tar.gz
boards-ef793a806a8d5a479c29c061780c56f62c4d3535.tar.bz2
boards-ef793a806a8d5a479c29c061780c56f62c4d3535.zip
php-cs-fixer tidies to php8.5 standards
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'modules')
-rwxr-xr-xmodules/mod_recent_posts.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mod_recent_posts.php b/modules/mod_recent_posts.php
index 99af120..921f144 100755
--- a/modules/mod_recent_posts.php
+++ b/modules/mod_recent_posts.php
@@ -21,7 +21,7 @@ if( !empty( $moduleParams ) ) {
extract( $moduleParams );
}
-$listHash = array( 'user_id' => $gQueryUserId, 'sort_mode' => 'created_desc' );
+$listHash = [ 'user_id' => $gQueryUserId, 'sort_mode' => 'created_desc' ];
if( !empty( $moduleParams['module_rows'] ) ) {
$listHash['max_records'] = $moduleParams['module_rows'];