0
I am using Muscol 2.2 for J 1.6. When I first submit a search, it appears ok. But when the form comes up it will give you the option to "Search Only:" there's a checkbox for artist, album and songs. But if any of the three are checked, I get this error:
"Warning: array_merge() [function.array-merge]: Argument #3 is not an array in /home/plugins/search/albums/albums.php on line 154"
and there are no results.
I also have tried RokAjaxSearch which is supposed to use the same results as the core search but it won't find any artists. It only finds albums.
Germi has tried to figure out what is wrong but has not found anything yet.
I have attached a screenshot.
Thanks,
Tom
"Warning: array_merge() [function.array-merge]: Argument #3 is not an array in /home/plugins/search/albums/albums.php on line 154"
and there are no results.
I also have tried RokAjaxSearch which is supposed to use the same results as the core search but it won't find any artists. It only finds albums.
Germi has tried to figure out what is wrong but has not found anything yet.
I have attached a screenshot.
Thanks,
Tom

Responses (4)
-
Accepted Answer
-
Accepted Answer
0not sure if this issue has been resolved but:
only the rows array gets initialized, u need to initialize the rows2 and rows3 arrays.
from this:
if(!$areas){
$buscar = true ;
$areas = array();
}
$rows = array();
to this:
if(!$areas){
$buscar = true ;
$areas = array();
}
$rows = array();
$rows2 = array();
$rows3 = array();
-
Accepted Answer
Your Reply

Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »