there is a problem with the search too and so may be related. The search takes me to the same 500 page too.
--------------- Added [DATE]1308687922[/DATE] at [TIME]1308687922[/TIME] ---------------
what is Jira? I do have a few mods on but they have all been fine, no problems till they upgraded?
Thanks for your help Lynne, which isn't the first time as it happens lol
--------------- Added [DATE]1308688120[/DATE] at [TIME]1308688120[/TIME] ---------------
Just re-read your post, duh, you mean that although they were fine before they may not be now that the upgrade has happened. I'll disable them all tomorrow to see what happens. Too late now as I'm at work in 5 hours and haven't been to bed yet!!!!
I'll let you know tomorrow. Fingers crossed.
--------------- Added [DATE]1308763732[/DATE] at [TIME]1308763732[/TIME] ---------------
I've disabled every mod and there is no change. Was the fix this, that you were referring to Lynne
vb/search/criteria.php
if (method_exists($this->search_type, 'get_display_name'))
{
$hashstrings[] = 'type:' . $this->search_type->get_display_name();
}
else
{
$hashstrings[] = 'type:' . strval($this->search_type);
}
and replace it with
$hashstrings[] = 'type:' . strval($this->search_type);
|