Took me a while to track it down, but I found a small problem that was kicking my butt. I don't know if this has been corrected already and I'm not really sure how to search for it in the issue tracker, so I apologize if this has already been addressed.
On the List Mixes view (add=31) in this build, there's a select box at the bottom that allows you to modify all of the selected lists' statuses at once. (Very handy for a mix with 10 lists.) The problem I found is that, when you click on a status to add, it clears the default options (DROP NA A B NEW -) and inserts the newly selected status. However, it doesn't insert the leading - (minus). As a result, when you apply the selected statuses to all lists, the AST_VDhopper_MIXtest.pl fails to add an ' (apostrophe) to the end (line 1149).
Sadly, I don't have a copy of the admin.php for this particular version and build, (I don't have permission to access the server directly. All my troubleshooting is done the hard, hard way.) otherwise I could tell you exactly what line needs to be addressed. Best I can do is tell you it's near line 14833 (looking at the admin.php from V2.0.5-173, B90320-0424), where it probably says:
- Code: Select all
echo "<input type=hidden name=status".$US."X$US$vlc_id id=status".$US."X$US$vlc_id value=\"\">\n";
I think the value should equal \" -\" rather than \"\".