Skip to content

Commit 8ef385e

Browse files
committed
v3.2.1
- Minor bugfixes
1 parent ac178b1 commit 8ef385e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

catalog/controller/extension/payment/cryptapi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public function isCryptapiOrder($status = false)
152152
$order_id = (int)($this->request->get['amp;order_id']);
153153
}
154154

155-
if ($order_id > 0) {
155+
if (isset($order_id)) {
156156
$this->load->model('checkout/order');
157157
$order = $this->model_checkout_order->getOrder($order_id);
158158

0 commit comments

Comments
 (0)