Skip to content

Commit

Permalink
Small syntax error fix and updated README to contain possible port tr…
Browse files Browse the repository at this point in the history
…oubles fix.
  • Loading branch information
kFrolichs committed Feb 22, 2018
1 parent 62f523a commit bfa3408
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# Wuunder opencart plugin
# Wuunder opencart plugin

Troubles caused by use of other ports than HTTP can be fixed but are not part of the standard implementation.
4 changes: 2 additions & 2 deletions vqmod/xml/orders_list.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<add><![CDATA[
<ul class="wuunder-icons">
<?php if (is_null($order['label_id'])) {
if (is_null($order['booking_url']) || empty($order['booking_url)) { ?>
if (is_null($order['booking_url']) || empty($order['booking_url'])) { ?>
<a href="<?php echo $order['generate_booking_url']; ?>" title="<?php echo $create_label; ?>"><img class="wuunder-icon" src="/admin/view/image/wuunder/create-label.png"/></a>
<?php } else { ?>
<a href="<?php echo $order['booking_url']; ?>" title="<?php echo $create_label; ?>"><img class="wuunder-icon" src="/admin/view/image/wuunder/create-label.png" /></a>
Expand All @@ -30,4 +30,4 @@
]]></add>
</operation>
</file>
</modification>
</modification>

0 comments on commit bfa3408

Please sign in to comment.