From c36472fde9d866ca759590fcad01b7672a768d7d Mon Sep 17 00:00:00 2001 From: b Date: Sat, 12 Aug 2023 17:51:27 +0000 Subject: [PATCH] fix wrong field in converting posts --- bot2m.1.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot2m.1.pl b/bot2m.1.pl index 573d6a7..2edbb57 100644 --- a/bot2m.1.pl +++ b/bot2m.1.pl @@ -97,7 +97,7 @@ if (opendir $dh, encode('locale_fs', MPOST_PATH)) { $new_post{'content'} = $new_message; $new_post{'username'} = url_decode($post{'username'}); $new_post{'password'} = url_decode($post{'password'}); - $new_post{'subject'} = url_decode($post{'password'}); + $new_post{'subject'} = url_decode($post{'subject'}); if ($post{'disable_bbcode'}) { $new_post{'bbcode'} = '0'; } -- 2.30.2