Page 1 of 1

OC 2.0 Featured Module Error

Posted: Tue Feb 03, 2015 2:01 am
by Avvici

Code: Select all

Warning: Invalid argument supplied for foreach() in /home/joe76/public_html/admin/controller/module/featured.php on line 124
This happens when press Save without filling anything out.

Re: OC 2.0 Featured Module Error

Posted: Tue Feb 03, 2015 6:44 am
by pm-netti
Avvici -arvixe- wrote:

Code: Select all

Warning: Invalid argument supplied for foreach() in /home/joe76/public_html/admin/controller/module/featured.php on line 124
This happens when press Save without filling anything out.
This quick code :)

Code: Select all

if( !empty( $products ) ) {
		foreach ($products as $product_id) {
			$product_info = $this->model_catalog_product->getProduct($product_id);

			if ($product_info) {
				$data['products'][] = array(
					'product_id' => $product_info['product_id'],
					'name'       => $product_info['name']
				);
			}
		}
}
lines 124-133

Re: OC 2.0 Featured Module Error

Posted: Thu Feb 05, 2015 10:38 pm
by Avvici
I'm not asking for help to fix this. This is a bug forum. It needs to be fixed on the base level. O0

Re: OC 2.0 Featured Module Error

Posted: Wed Jan 13, 2016 1:10 pm
by seun
Please how do i fix this problem