inoxfire
Results 1 - 2 of 2
Brilliant, just what I was looking for, I'm just hoping you'll create a support forum soon :)
Great tool!
In order to make it work with Joomla 1.5 you need to make this changees to the Registry.PHP
Changed from:
line 196 // Get the old value if exists so we can return it
line 197 $ns->$nodes[$i] =& $value;
line 198
line 199 return $ns->$nodes[$i];
To:
line 196 // Get the old value if exists so we can return it
line 197 if($nodes[$i]) $ns->$nodes[$i] =& $value;
line 198
line 199 if ($nodes[$i]) return $ns->$nodes[$i];
In order to make it work with Joomla 1.5 you need to make this changees to the Registry.PHP
Changed from:
line 196 // Get the old value if exists so we can return it
line 197 $ns->$nodes[$i] =& $value;
line 198
line 199 return $ns->$nodes[$i];
To:
line 196 // Get the old value if exists so we can return it
line 197 if($nodes[$i]) $ns->$nodes[$i] =& $value;
line 198
line 199 if ($nodes[$i]) return $ns->$nodes[$i];

