
diff --git a/webht/third_party/trippestOrderSync/controllers/send_operation.php b/webht/third_party/trippestOrderSync/controllers/send_operation.php
index 548da41e..1e209562 100644
--- a/webht/third_party/trippestOrderSync/controllers/send_operation.php
+++ b/webht/third_party/trippestOrderSync/controllers/send_operation.php
@@ -25,6 +25,7 @@ class Send_operation extends CI_Controller {
public function sms_log()
{
+ $this->permission->is_admin(true);
$date = $this->input->get_post("date");
$date = $date ? $date : date('Y-m-d', strtotime("+1 day"));
$ready_order["date"] = $date;
diff --git a/webht/third_party/trippestOrderSync/controllers/vendor_money.php b/webht/third_party/trippestOrderSync/controllers/vendor_money.php
index 52a2df32..9aa2cf22 100644
--- a/webht/third_party/trippestOrderSync/controllers/vendor_money.php
+++ b/webht/third_party/trippestOrderSync/controllers/vendor_money.php
@@ -23,6 +23,7 @@ class Vendor_money extends CI_Controller {
public function index()
{
+ $this->permission->is_admin(true);
$date_range = $this->input->post("date_range");
preg_match_all('/\d{4}\-\d{2}\-\d{2}/', $date_range, $date_range_arr);
if (empty($date_range_arr[0])) {
diff --git a/webht/third_party/trippestOrderSync/views/sms_log.php b/webht/third_party/trippestOrderSync/views/sms_log.php
index 0f36160c..f991bce2 100644
--- a/webht/third_party/trippestOrderSync/views/sms_log.php
+++ b/webht/third_party/trippestOrderSync/views/sms_log.php
@@ -57,6 +57,14 @@