FYI, in gk.framework.php line 600, I get:
- Code: Select all
Notice: Uninitialized string offset: 0
I removed [0] and PhP notice disappeared:
- Code: Select all
if($excluded_categories[0] == '') $excluded_categories = array(0);
to
- Code: Select all
if($excluded_categories == '') $excluded_categories = array(0);
please confirm if this is a bug or safe to remove.
Thank you!