There is a small bug in the research_event_list.php page for version 2.10 that keeps URLs from working that contain an ampersand (&). You can fix it by simply changing:
// replace spaces in title with a '+'
$link_version = str_replace(" ", "+", $link_version);
// replace '&' in title with its URL-safe equivalent
$link_version = str_replace("&", "%26", $link_version);
That will also provide slightly faster operation as a side benefit. The above line will be fixed in the next release, but the quick fix will take care of you for now.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum