inoxfire

Reviews(2)
 
byinoxfire, March 26, 2008
1 of 1 people found this review helpful
Brilliant, just what I was looking for, I'm just hoping you'll create a support forum soon :)
byinoxfire, March 25, 2008
2 of 2 people found this review helpful
JoomlaStats
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];