Thanks it does works.
Great support, I soon will send you some traffic from my Joomla Database users, so they can check your extensions.
To apply the changes I just did this.
I change this around line 43 or so:
Code: |
function _init()
{
global $Itemid;
$this->_resultController = new AriQuizResultController();
$this->_quizController = new AriQuizController();
$this->addVar('Itemid', $Itemid);
parent::_init();
}
|
To this
Code: |
function _init()
{
global $Itemid;
$this->_resultController = new AriQuizResultController();
$this->_quizController = new AriQuizController();
$this->addVar('Itemid', $Itemid);
parent::_init();
$app = JFactory::getApplication();
$params = $app->getParams();
if ($params)
{
$robots = $params->get('robots');
if ($robots)
{
$doc = JFactory::getDocument();
$doc->setMetadata('robots', $robots);
}
|