Page 1 of 1

controller/account/register.php on line 423

Posted: Sat May 25, 2013 11:05 pm
by riopoulos
Γεια σας
μήπως μπορεί να βοηθήσει κάποιος στην διόρθωση του?
PHP Notice: Undefined index: zone_id in catalog/controller/account/register.php on line 423
Η έκδοση είναι 1.5.3.1 update από 1.5.2.1

Re: controller/account/register.php on line 423

Posted: Sun May 26, 2013 1:48 am
by People's Code
Στο controller/account/register.php στη γραμμή 423

To

Code: Select all

    	if ($this->request->post['zone_id'] == '') {
      		$this->error['zone'] = $this->language->get('error_zone');
    	}
κάντο

Code: Select all

    	if (!isset($this->request->post['zone_id']) || $this->request->post['zone_id'] == '') {
      		$this->error['zone'] = $this->language->get('error_zone');
    	}

Re: controller/account/register.php on line 423

Posted: Sun May 26, 2013 3:47 am
by riopoulos
Το άλλαξα χωρίς κανένα πρόβλημα φαίνονται όλα μια χαρά.Ευχαριστώ!!!