From b866d2a1be54af283dffa990270986be15516d4e Mon Sep 17 00:00:00 2001 From: Olusesan Ameye Date: Sat, 21 May 2022 13:57:25 -0400 Subject: [PATCH] fix --- www/application/controllers/Jobs.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/www/application/controllers/Jobs.php b/www/application/controllers/Jobs.php index f5b60fd9..a440beac 100644 --- a/www/application/controllers/Jobs.php +++ b/www/application/controllers/Jobs.php @@ -966,8 +966,6 @@ echo $this->getMarketInterestMessage( $in['offer_code'], $out['client_id'] ); $query = $this->db->query($mysqlJ); $data['recentjobs'] = $query->result(); - - extract($_POST); $redirected = false; if ($_POST) { @@ -976,7 +974,7 @@ echo $this->getMarketInterestMessage( $in['offer_code'], $out['client_id'] ); $in['description'] = $description; $in['timeline_days'] = $this->input->post('timeline') ; //$timeline; $in['job_detail'] = trim( $this->input->post('job_detail') ); // Somehow this doesnt show when large $job_detail; - $in['price'] = $this->input->post('price') ; // (is_int($price)? $price:0) * 100; + $in['price'] = $this->input->post('price') *100; // (is_int($price)? $price:0) * 100; $in['member_id'] = $_SESSION['member_id']; $in['country'] = $country_job; @@ -989,7 +987,6 @@ echo $this->getMarketInterestMessage( $in['offer_code'], $out['client_id'] ); if ($res == PHP_CREATED_OK) { // print_r($out); if ($out['job_id'] > 0) { - $this->processingJob($out['job_id']); $redirected = true; }