Page 1 of 1

the length limit on first and last name

Posted: Sat Mar 06, 2010 1:00 am
by zzzz
How to change the length limit on first and last name?

Re: the length limit on first and last name

Posted: Sat Mar 06, 2010 4:24 am
by rph
/catalog/controller/account/create.php
private function validate()

Code: Select all

    	if ((strlen(utf8_decode($this->request->post['firstname'])) < 1) || (strlen(utf8_decode($this->request->post['firstname'])) > 32)) {
      		$this->error['firstname'] = $this->language->get('error_firstname');
    	}

    	if ((strlen(utf8_decode($this->request->post['lastname'])) < 1) || (strlen(utf8_decode($this->request->post['lastname'])) > 32)) {
      		$this->error['lastname'] = $this->language->get('error_lastname');
    	}
Change 32 to whatever you want the character limit to be.