Post by bwingwing » Fri Jun 01, 2012 11:54 am

Hi all,

GOT THIS ERROR LOG WHEN WORK ON INFORMATION PAGE.

PHP Notice: Undefined index: bottoms in /volume1/web/admin/controller/catalog/information.php on line 380

I still can save, don't know what was the problem.

using v1.5.3.1

Thank you for your answer.

New member

Posts

Joined
Sun Oct 24, 2010 3:54 am

Post by pprmkr » Fri Jun 01, 2012 1:45 pm

On line 379 in admin/controller/catalog/information.php:

Code: Select all

		if (isset($this->request->post['bottom'])) {
			$this->data['bottom'] = $this->request->post['bottoms'];
		} elseif (!empty($information_info)) {
			$this->data['bottom'] = $information_info['bottom'];
		} else {
			$this->data['bottom'] = 0;
		}
The post-values are checked here, and as you can see there is a typo.
Change on line 380

Code: Select all

			$this->data['bottom'] = $this->request->post['bottoms'];
to:

Code: Select all

			$this->data['bottom'] = $this->request->post['bottom'];

User avatar
Active Member

Posts

Joined
Sat Jan 08, 2011 11:05 pm
Location - Netherlands

Post by bwingwing » Fri Jun 01, 2012 2:53 pm

Thanks, pprmkr!!

pprmkr wrote:On line 379 in admin/controller/catalog/information.php:

Code: Select all

		if (isset($this->request->post['bottom'])) {
			$this->data['bottom'] = $this->request->post['bottoms'];
		} elseif (!empty($information_info)) {
			$this->data['bottom'] = $information_info['bottom'];
		} else {
			$this->data['bottom'] = 0;
		}
The post-values are checked here, and as you can see there is a typo.
Change on line 380

Code: Select all

			$this->data['bottom'] = $this->request->post['bottoms'];
to:

Code: Select all

			$this->data['bottom'] = $this->request->post['bottom'];

New member

Posts

Joined
Sun Oct 24, 2010 3:54 am

Post by jrotem » Mon Jul 02, 2012 11:51 am

Just chiming in here, I tried this correction but I am still getting "Undefined index: bottom in......admin/controller/catalog/information.php on line 382" errors. Anything else I can do? I cannot save "Information."
Thank you.

User avatar
New member

Posts

Joined
Sun Jun 24, 2012 3:38 pm
Who is online

Users browsing this forum: No registered users and 58 guests