I made a change to come code and can’t for the life of me fix it, I keep getting the same error message
Notice: Undefined index: ISC_CLASS_BRANDS in /virtual/ozhairandbeauty.com/public_html/includes/display/BrandProductListing.php on line 14
Fatal error: Call to a member function ShowingAllBrands() on a non-object in /virtual/ozhairandbeauty.com/public_html/includes/display/BrandProductListing.php on line 14
This is part of the code
[php]
- <?php
-
CLASS ISC_BRANDPRODUCTLISTING_PANEL extends PANEL
-
{
-
public function SetPanelSettings()
-
{
-
$count = 0;
-
$output = "";
-
$products = array();
-
$GLOBALS['BrandsMessage'] = '';
-
// If we're showing the "All brands" page then we to display a list of all the brands
-
if($GLOBALS['ISC_CLASS_BRANDS']->ShowingAllBrands()) {
-
// Output sub-categories
-
$GLOBALS['SNIPPETS']['SubBrands'] = "";
-
$result = $GLOBALS['ISC_CLASS_DB']->Query("SELECT * FROM [|PREFIX|]brands ORDER BY brandname ASC");
[/php]
Thanks for any help you can give