21
Hello acegamer.
Well. It hapenned to me to. Then problem is in the profile and in the search. If you deactivate the search inclusion in xoopsversion.php you will be able to see the proflie.
Why?
Because it calls news/include/functions.php
For this module to work fine you have to rename all the functions inside functions.php and the other files that call them.
Ok
But it still has a bug that I can´t resolve.
I can´t use an original block together with a cloned block in the same page. In diferent pages they work fine. The problem must be the same but I can´t tell exatly where. My clue is the folder Class. How do I rename a class???
How is a class called??
If I rename
class NewsStory extends XoopsStory
to
class NewsStory_02 extends XoopsStory
then how do I rename the references to it?
is this a reference:
$tmpstory = new NewsStory; ??? maybe a class
or this:
$tmpstory = new NewsStory(); ?? this i think it´s a function
is this a reference:
$storyarray = NewsStory :: getAllSubmitted(0, true, getmoduleoption_02('restrictindex')); ??? maybe a class
anyone??