2010-10-14, 02:32:41
Hello,
I have tested, and in public page
this var is not init. where is defined ?
For block error php , I replace
by
I have tested, and in public page
Code:
Notice: Undefined variable: border_color in /plugins/dominion-jcart.php on line 477
Notice: Undefined variable: text_color in/plugins/dominion-jcart.php on line 478
this var is not init. where is defined ?
For block error php , I replace
Code:
$raamkleur = ($border_color == '')?"#66cc66":$border_color;
$tekskleur = ($text_color == '')?'#000066':$text_color;
Code:
$raamkleur = (!isset($border_color) || $border_color == '')?"#66cc66":$border_color;
$tekskleur = (!isset($text_color) || $text_color == '')?'#000066':$text_color;