I do not know what code you created, but if you use parent in your fork, maybe this is your problem?
www.j-cook.pro/index.php/f/forks
parent, self
The fork feature has a limitation with the parent and self keywords.
In facts, the parent of your forked class is the original one, not its real parent.
The self keyword call the original class, so in your fork it becomes parent.
Some trick functions like JView::_parentDisplay() permit to avoid this problem.
For example when you override a view file, instead of calling :
parent::display(); //Infinite loop
Replace by one of the following possibilities
$this->_parentDisplay();
self::_parentDisplay(); // Static call
return self::_parentDisplay(); //Static call with returning value