Recently installed a new mobile theme for my site (on oc 1.5.1.3) which has it's own .tpl files and also a vqmod file. Installed it on Friday with a view to configuring it all this week (first day back today). I found some php notices in the error log , have just double checked the cart is working and to my horror have found that guest checkout is completely broken.
Code: Select all
PHP Notice: Undefined index: email in /public_html/vqmod/vqcache/vq2-catalog_controller_checkout_guest.php on line 30
Code: Select all
if ((utf8_strlen($this->request->post['email']) > 96) || !preg_match('/^[^\@]+@.*\.[a-z]{2,6}$/i', $this->request->post['email'])) {
$json['error']['email'] = $this->language->get('error_email');
}
Ideas?