summaryrefslogtreecommitdiff
path: root/assign.php
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 /assign.php
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 'assign.php')
-rwxr-xr-xassign.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/assign.php b/assign.php
index 4741d42..8c3c602 100755
--- a/assign.php
+++ b/assign.php
@@ -31,9 +31,9 @@ if (!empty($_REQUEST['remove'])) {
$b->removeContent($content_id);
}
}
- }else{
- // @TODO assign error and report back to user which were not processed
}
+ // @TODO assign error and report back to user which were not processed
+
}
}
@@ -60,5 +60,5 @@ $data = BitBoard::getAllMap();
$gBitSmarty->assign('data',$data);
// Display the template
-$gBitSystem->display( 'bitpackage:boards/board_assign.tpl', tra('Assign content to Board') , array( 'display_mode' => 'display' ));
+$gBitSystem->display( 'bitpackage:boards/board_assign.tpl', tra('Assign content to Board') , [ 'display_mode' => 'display' ]);
?>