mmyhre wrote:This one is hounting me.
Warning: in_array() [function.in-array]: Wrong datatype for second argument in /home/1/w/webtv-media/www/templates/gk_penguinmail/lib/gk.framework.php on line 626
If i link to category blog is goes away, but when linking to an single article it is there all the time.
This issue got resolved by doing the following, as posted by IT Comtech
Well, I did upgrade my template to 1.1 several times and still has the same problem,
I think I have found a bug within the code even with the new gk.framework.php, On line 601.
$excluded_categories = $this->getParam('excluded_cats', '');
this parameter is being passed to the in_array function before turning it into an array. I believe the correct syntax should be on line 601:
$excluded_categories = explode(',', $this->getParam('excluded_cats', ''));
That hsould fix it!