diff --git a/app/Controllers/Admin/Podcast.php b/app/Controllers/Admin/Podcast.php
index 706a9e6c0e898ffe77103740b96455395271040e..342280c5406e26bd2fd713df20489b43193fe498 100644
--- a/app/Controllers/Admin/Podcast.php
+++ b/app/Controllers/Admin/Podcast.php
@@ -163,7 +163,7 @@ class Podcast extends BaseController
             'copyright' => $this->request->getPost('copyright'),
             'location' => $this->request->getPost('location_name'),
             'payment_pointer' => $this->request->getPost('payment_pointer'),
-            'is_blocked' => $this->request->getPost('is_blocked') === 'yes',
+            'is_blocked' => $this->request->getPost('block') === 'yes',
             'is_completed' => $this->request->getPost('complete') === 'yes',
             'is_locked' => $this->request->getPost('lock') === 'yes',
             'created_by' => user(),
@@ -259,11 +259,10 @@ class Podcast extends BaseController
         $this->podcast->payment_pointer = $this->request->getPost(
             'payment_pointer'
         );
-        $this->podcast->is_blocked =
-            $this->request->getPost('is_blocked') === 'yes';
+        $this->podcast->is_blocked = $this->request->getPost('block') === 'yes';
         $this->podcast->is_completed =
             $this->request->getPost('complete') === 'yes';
-        $this->podcast->is_lock = $this->request->getPost('lock') === 'yes';
+        $this->podcast->is_locked = $this->request->getPost('lock') === 'yes';
         $this->updated_by = user();
 
         $db = \Config\Database::connect();