I get no error when I use my item, but I get this error if I go to it directly:
Fatal error: Class item_firescroll: Cannot inherit from undefined class itemtemplate in
You're not meant to go to the item directly, as that will always happen (indeed, I should have implemented better error handling in the items).
Adding something like this just above the '
class item_FireScroll' line would prevent the ugly message (just make sure that the file is indeed called 'FireScroll.php':
if (eregi("FireScroll.php",$_SERVER['PHP_SELF'])) die("You can't run this directly!");
Basically, this checks if you're running FireScroll.php, and if you are, show an error. When you're using the item, the user is actually accessing index.php, so the error won't be displayed.