Hello,
I have a site which is running under one of the older versions of joomla. Recently I have toyed arround with v1.5 and in general like the look and feel and the general backend experiance I have had with it.
I am considering a revamp of my current site to 1.5 starting from scratch - dont worry, not asking for upgrade help lol. I have installed a fresh copy of joomla 1.5.3 and installed ario-light. So far so good

Next I installed the free trial of RS_Form! and created a simple contact me form as a test.
When I click the preview form button I get the following error message in my browser:
"Fatal error: Cannot redeclare sefreltoabs() (previously declared in mysite/plugins/system/legacy/functions.php:872) in mysite/templates/ariolite/index.php on line 10"
I did some web searching and found a forum (which i had to translate to english) which suggested to alter the template line:
function sefRelToAbs ($value) {
return JRoute:: _ ($value);
}
With the following:
if (! function_exists (“sefRelToAbs”
) {
function sefRelToAbs ($value) {
// Replace all & with & as the rout doesn't and-arose &
$url = str_replace (“& ”, “&”, $value);
if (substr (more strtolower ($url), 0.9)! = “index.php”
return $url;
$uri = JURI:: getInstance ();
$prefix = $uri->toString (array (“scheme”, “host”, “haven”
);
return $prefix.JRoute:: _ ($url);
}
}
I suppose my question(s) are - is this error in the template or form plugin I am using? What do you think of the code snipit I found? If it helps I am using the 1.5 naitive versin of Ario - as well as a 1.5 native version of the form plugin and legacy support is off. What do you think?