summaryrefslogtreecommitdiff
path: root/send_post.php
diff options
context:
space:
mode:
authorLester Caine <lester@lsces.co.uk>2026-05-14 09:42:36 +0100
committerLester Caine <lester@lsces.co.uk>2026-05-14 09:42:36 +0100
commitc9b2d19672559b7c7319d15caf7d5cfbe7b192c6 (patch)
tree89d0ab47a203c8f0f06ffd7af38c9a6f98f79056 /send_post.php
parent9bc2edd591213b7fd535c36b7957a43246341b7f (diff)
downloadblogs-c9b2d19672559b7c7319d15caf7d5cfbe7b192c6.tar.gz
blogs-c9b2d19672559b7c7319d15caf7d5cfbe7b192c6.tar.bz2
blogs-c9b2d19672559b7c7319d15caf7d5cfbe7b192c6.zip
php-cs-fixer tidies to php8.5 standards
Diffstat (limited to 'send_post.php')
-rwxr-xr-xsend_post.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/send_post.php b/send_post.php
index 8c5f525..9a8c3bb 100755
--- a/send_post.php
+++ b/send_post.php
@@ -79,7 +79,7 @@ if (isset($_REQUEST['send'])) {
$gBitSmarty->assign('mail_machine', $machine);
$mail_data = $gBitSmarty->fetch('bitpackage:blogs/blogs_send_link.tpl');
@mail($email, KernelTools::tra('Post recommendation at'). ' ' . $_SERVER["SERVER_NAME"], $mail_data,
- "From: ".$gBitSystem->getConfig( 'site_sender_email' )."\r\nContent-type: text/plain;charset=utf-8\r\n");
+ "From: ".$gBitSystem->getConfig( 'site_sender_email' )."\r\nContent-type: text/plain;charset=utf-8\r\n", );
}
$gBitSmarty->assign('sent', 'y');
@@ -87,4 +87,4 @@ if (isset($_REQUEST['send'])) {
$gBitSystem->setBrowserTitle("Send Blog Post: ".$gContent->mInfo['title']);
// Display the template
-$gBitSystem->display( 'bitpackage:blogs/send_blog_post.tpl', null, array( 'display_mode' => 'display' )); \ No newline at end of file
+$gBitSystem->display( 'bitpackage:blogs/send_blog_post.tpl', null, [ 'display_mode' => 'display' ]); \ No newline at end of file