OpenCart 2.0.1.0 Issues
Posted: Mon Dec 01, 2014 8:03 pm
The following issues are still unresolved in OpenCart 2.0.1.0:
The following reported at viewtopic.php?f=181&t=131683&start=100#p523549
Information Form
In "admin/view/template/catalog/information_form.tpl", line 53 reads:
This label should be language dependent, as follows:
The following reported at viewtopic.php?f=181&t=131683&start=120#p524806
OpenBay Issues
Breadcrumbs
The breadcrumbs link to the admin home page (dashboard) in "admin/controller/extension/openbay.php" at lines 81, 166, 576, 865 and 1231 all lead to "common/home", as follows:
This returns a "Permission Denied" page, since "common/home" has been replaced with "common/dashboard". Should be changed to:
The same is true for all files in the "admin/controller/openbay/" directory, with the exception of "etsy_shipping.php" and "etsy_shop.php" (which don't use breadcrumbs).
OpenBay Order List
The variable "button_cancel" needs to be defined in "admin/controller/extension/openbay.php" in the "orderList()" function.:
Then the "Cancel" button will return to the OpenBay dashboard page.
Language value for variable "text_view" and "text_edit" not defined in the language file (admin/language/english/openbay/openbay_order.php).
The following reported at viewtopic.php?f=181&t=131683&start=120#p524996
Amazon Checkout
The "cancel" define in the controller (admin/controller/payment/amazon_checkout.php) at line 139 reads:
This is in the admin, SSL needs to be stated. Like so:
Secure Trading
The "cancel" define in the controller (admin/controller/payment/securetrading_pp.php) at line 280 reads:
This is in the admin, SSL needs to be stated. Like so:
The same in "admin/controller/payment/securetrading_ws.php" at line 284.
Web Payment Software
The "action" and "cancel" defines at lines 81 and 83 need to be updated to standard code. Instead of:
and
They should be:
and
respectively.
AuthorizeNet Sim
Line 17 of admin/controller/payment/authorizenet_sim.php reads:
This should be:
New Issue
HTML Content
The HTML Content module is throwing "Uninitialized string offset 1" errors in the template file. The cause is coming from the controller (admin/controller/module/html.php) at line 99:
This should be an array not a NULL value string:
The following reported at viewtopic.php?f=181&t=131683&start=100#p523549
Information Form
In "admin/view/template/catalog/information_form.tpl", line 53 reads:
Code: Select all
<label class="col-sm-2 control-label" for="input-description"><?php echo $entry_description; ?></label>
Code: Select all
<label class="col-sm-2 control-label" for="input-description<?php echo $language['language_id']; ?>"><?php echo $entry_description; ?></label>
OpenBay Issues
Breadcrumbs
The breadcrumbs link to the admin home page (dashboard) in "admin/controller/extension/openbay.php" at lines 81, 166, 576, 865 and 1231 all lead to "common/home", as follows:
Code: Select all
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_home'),
'href' => $this->url->link('common/home', 'token=' . $this->session->data['token'], 'SSL'),
);
Code: Select all
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_home'),
'href' => $this->url->link('common/dashboard', 'token=' . $this->session->data['token'], 'SSL'),
);
OpenBay Order List
The variable "button_cancel" needs to be defined in "admin/controller/extension/openbay.php" in the "orderList()" function.:
Code: Select all
$data['button_cancel'] = $this->language->get('button_cancel');
Language value for variable "text_view" and "text_edit" not defined in the language file (admin/language/english/openbay/openbay_order.php).
Code: Select all
$_['text_view'] = 'View';
$_['text_edit'] = 'Edit';
Amazon Checkout
The "cancel" define in the controller (admin/controller/payment/amazon_checkout.php) at line 139 reads:
Code: Select all
$data['cancel'] = $this->url->link('extension/payment', 'token=' . $this->session->data['token']);
Code: Select all
$data['cancel'] = $this->url->link('extension/payment', 'token=' . $this->session->data['token'], 'SSL');
The "cancel" define in the controller (admin/controller/payment/securetrading_pp.php) at line 280 reads:
Code: Select all
$data['cancel'] = $this->url->link('extension/payment', 'token=' . $this->session->data['token']);
Code: Select all
$data['cancel'] = $this->url->link('extension/payment', 'token=' . $this->session->data['token'], 'SSL');
Web Payment Software
The "action" and "cancel" defines at lines 81 and 83 need to be updated to standard code. Instead of:
Code: Select all
$data['action'] = HTTPS_SERVER . 'index.php?route=payment/web_payment_software&token=' . $this->session->data['token'];
Code: Select all
$data['cancel'] = HTTPS_SERVER . 'index.php?route=extension/payment&token=' . $this->session->data['token'];
Code: Select all
$data['action'] = $this->url->link('payment/web_payment_software', 'token=' . $this->session->data['token'], 'SSL');
Code: Select all
$data['cancel'] = $this->url->link('extension/payment', 'token=' . $this->session->data['token'], 'SSL');
AuthorizeNet Sim
Line 17 of admin/controller/payment/authorizenet_sim.php reads:
Code: Select all
$this->redirect($this->url->link('extension/payment', 'token=' . $this->session->data['token'], 'SSL'));
Code: Select all
$this->response->redirect($this->url->link('extension/payment', 'token=' . $this->session->data['token'], 'SSL'));
HTML Content
The HTML Content module is throwing "Uninitialized string offset 1" errors in the template file. The cause is coming from the controller (admin/controller/module/html.php) at line 99:
Code: Select all
$data['module_description'] = '';
Code: Select all
$data['module_description'] = array();