Skip to content

Commit

Permalink
bug fixes for level 1
Browse files Browse the repository at this point in the history
  • Loading branch information
andr11b committed Feb 10, 2024
1 parent 1145e68 commit d2da5d8
Show file tree
Hide file tree
Showing 15 changed files with 28 additions and 2 deletions.
2 changes: 2 additions & 0 deletions admin/controller/extension/report/customer_activity.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

class ControllerExtensionReportCustomerActivity extends Controller {
private $error = array();

public function index() {
$this->load->language('extension/report/customer_activity');

Expand Down
2 changes: 2 additions & 0 deletions admin/controller/extension/report/customer_order.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

class ControllerExtensionReportCustomerOrder extends Controller {
private $error = array();

public function index() {
$this->load->language('extension/report/customer_order');

Expand Down
2 changes: 2 additions & 0 deletions admin/controller/extension/report/customer_reward.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

class ControllerExtensionReportCustomerReward extends Controller {
private $error = array();

public function index() {
$this->load->language('extension/report/customer_reward');

Expand Down
2 changes: 2 additions & 0 deletions admin/controller/extension/report/customer_search.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

class ControllerExtensionReportCustomerSearch extends Controller {
private $error = array();

public function index() {
$this->load->language('extension/report/customer_search');

Expand Down
2 changes: 2 additions & 0 deletions admin/controller/extension/report/customer_transaction.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

class ControllerExtensionReportCustomerTransaction extends Controller {
private $error = array();

public function index() {
$this->load->language('extension/report/customer_transaction');

Expand Down
2 changes: 2 additions & 0 deletions admin/controller/extension/report/marketing.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

class ControllerExtensionReportMarketing extends Controller {
private $error = array();

public function index() {
$this->load->language('extension/report/marketing');

Expand Down
2 changes: 2 additions & 0 deletions admin/controller/extension/report/product_purchased.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

class ControllerExtensionReportProductPurchased extends Controller {
private $error = array();

public function index() {
$this->load->language('extension/report/product_purchased');

Expand Down
2 changes: 2 additions & 0 deletions admin/controller/extension/report/product_viewed.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

class ControllerExtensionReportProductViewed extends Controller {
private $error = array();

public function index() {
$this->load->language('extension/report/product_viewed');

Expand Down
2 changes: 2 additions & 0 deletions admin/controller/extension/report/sale_coupon.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

class ControllerExtensionReportSaleCoupon extends Controller {
private $error = array();

public function index() {
$this->load->language('extension/report/sale_coupon');

Expand Down
2 changes: 2 additions & 0 deletions admin/controller/extension/report/sale_order.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

class ControllerExtensionReportSaleOrder extends Controller {
private $error = array();

public function index() {
$this->load->language('extension/report/sale_order');

Expand Down
2 changes: 2 additions & 0 deletions admin/controller/extension/report/sale_return.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

class ControllerExtensionReportSaleReturn extends Controller {
private $error = array();

public function index() {
$this->load->language('extension/report/sale_return');

Expand Down
2 changes: 2 additions & 0 deletions admin/controller/extension/report/sale_shipping.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

class ControllerExtensionReportSaleShipping extends Controller {
private $error = array();

public function index() {
$this->load->language('extension/report/sale_shipping');

Expand Down
2 changes: 2 additions & 0 deletions admin/controller/extension/report/sale_tax.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

class ControllerExtensionReportSaleTax extends Controller {
private $error = array();

public function index() {
$this->load->language('extension/report/sale_tax');

Expand Down
2 changes: 1 addition & 1 deletion admin/controller/marketplace/modification.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public function refresh($data = array()) {
$recovery = array();

// Set the a recovery of the modification code in case we need to use it if an abort attribute is used.
if (isset($modification)) {
if ($modification) {
$recovery = $modification;
}

Expand Down
2 changes: 1 addition & 1 deletion catalog/controller/mail/order.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function index(&$route, &$args) {

// If order status is not 0 then send update text email
if ($order_info['order_status_id'] && $order_status_id && $notify) {
$this->edit($order_info, $order_status_id, $comment, $notify);
$this->edit($order_info, $order_status_id, $comment);
}
}
}
Expand Down

0 comments on commit d2da5d8

Please sign in to comment.