Hello
Is it possible to do something like this (using a custom GET() function)?
if (GET('sort')) {
$sort = GET('sort');
setOption('gallery_sorttype', $sort, false);
}
The GET() function is getting the key from the URL, and the option is updating on page refresh - this I can see via print_r(getOptionList());, BUT the order of the images doesn't change. Do I need to do something else, like clear memory?