View Single Post
  #8  
Old 26th January 2015, 20:12
whisp whisp is offline
Member
 
Join Date: Jun 2014
Posts: 5
Default
Code:
$Categories = array('Music', 'App', 'E-Books', 'Audiobooks', 'E-Learning Videos', 'Comedy', 'Comics', 'teszt');
$GroupedCategories = array_intersect(array('Music'), $Categories);
$CategoryIcons = array('music.png', 'apps.png', 'ebook.png', 'audiobook.png', 'elearning.png', 'comedy.png', 'comics.png', 'teszt.png');

try like this

Code:
$Categories = array('Music', 'App', 'E-Books', 'Audiobooks', 'E-Learning Videos', 'Comedy', 'Comics', 'teszt');
$CategoryIcons = array('music.png', 'apps.png', 'ebook.png', 'audiobook.png', 'elearning.png', 'comedy.png', 'comics.png', 'teszt.png');
$GroupedCategories = array_intersect(array('Music'), $Categories);
hope that works.not sure thou. mine works fine with that config.

Last edited by joeroberts; 31st January 2015 at 03:02. Reason: please use code tag
Reply With Quote
The Following 2 Users Say Thank You to whisp For This Useful Post:
afterbit (26th January 2015), Coraille (27th January 2015)