Martin
2009-07-04 17:40:09
This post/thread will be updated with any I find along with fixes (if available).
Bug: Missing the closing PHP tag...
[Fix]
$GLOBALS['ISC_CFG']['BuiltInGateway'] = 'interspiremerchant';?>Martin
2009-07-04 17:40:09
$GLOBALS['ISC_CFG']['BuiltInGateway'] = 'interspiremerchant';?>Martin
2009-07-04 17:55:00
$GLOBALS['ISC_CFG']['ReturnReasons'] = array (
0 => 'Received Wrong Product',
1 => 'Wrong Product Ordered',
2 => 'Not Satisfied With The Product',
2 => 'There Was A Problem With The Product',
); $GLOBALS['ISC_CFG']['ReturnReasons'] = array (
0 => 'Received Wrong Product',
1 => 'Wrong Product Ordered',
2 => 'Not Satisfied With The Product',
3 => 'There Was A Problem With The Product',
);Martin
2009-07-04 18:13:35
Martin
2009-07-05 00:11:10
Martin
2009-07-05 12:48:15
if (isset($_POST['converterproviders'])) {
$converterproviders = implode(",", $_POST['converterproviders']);
}
$enabledStack = $_POST['converterproviders']; if (isset($_POST['converterproviders'])) {
$converterproviders = implode(",", $_POST['converterproviders']);
// MOD to remove warning.
$enabledStack = $_POST['converterproviders'];
}
else {
$enabledStack = array();
}
// $enabledStack = $_POST['converterproviders'];
// MOD END[error] [client 127.0.0.1] PHP Warning: Invalid argument supplied for foreach() in /home/[account]/public_html/admin/includes/classes/class.settings.php on line 2248, referer:http://www.domain.tld/admin/index.php?ToDo=viewCurrencySettings
[error] [client 127.0.0.1] PHP Notice: Undefined index: converterproviders in /home/[account]/public_html/admin/includes/classes/class.settings.php on line 2240, referer:http://www.domain.tld/admin/index.php?ToDo=viewCurrencySettings
gaz
2009-07-07 15:24:44
Martin
2009-07-08 11:32:37
YesterdayAt = "Yesterday at %"YesterdayAt = "Yesterday at %s"gaz
2009-07-14 08:52:14
Martin
2009-07-14 10:44:11
Another incorrect var in the notification email.
ANo
"for%numItemsitems(s) totalling £45.00."
Apart from "totaling" being spelt wrong that is.
gaz
2009-07-14 12:53:49
Martin
2009-07-14 13:34:56
Thats from the email sent to me when I receive an order.
The only place I can see that var being used is in modules\notification\email\module.email.php
I cant seem to find the template for that email
NEmailMessageBody = ":testBanner*** This is an automatically generated email, please do not reply ***<br /><br />You have received a new order on :shopName for %numItems items(s) totalling :orderTotal. Follow the link below to view complete details of the order:<br /><br /><a href=':shopPath/admin/index.php?ToDo=viewOrders&orderId=:orderId'>:shopPath/admin/index.php?ToDo=viewOrders&orderId=:orderId</a><br /><br />"NEmailMessageBody = ":testBanner*** This is an automatically generated email, please do not reply ***<br /><br />You have received a new order on :shopName for :numItems items(s) totalling :orderTotal. Follow the link below to view complete details of the order:<br /><br /><a href=':shopPath/admin/index.php?ToDo=viewOrders&orderId=:orderId'>:shopPath/admin/index.php?ToDo=viewOrders&orderId=:orderId</a><br /><br />"Martin
2009-07-18 23:02:48
$query = "
SELECT categoryid, catname
FROM [|PREFIX|]categories
WHERE categoryid != catparentid
LIMIT ".$GLOBALS['ISC_CLASS_DB']->Quote((int)$limit)
; $query = "
SELECT categoryid, catname
FROM [|PREFIX|]categories
WHERE categoryid != catparentid AND catvisible=1
LIMIT ".$GLOBALS['ISC_CLASS_DB']->Quote((int)$limit)
;gaz
2009-07-20 11:57:52
Martin
2009-07-20 12:02:30
cheers for this martin