AlCher
Karma: 0
|
mod_remositorymulti_j - troubles - 2008/06/21 12:09
1. PHP displays the message (PHP Version: 5.2.6 at me): Notice: Trying to get property of non-object in C:mywebinf.ruwwwmodulesmod_remositorymultimod_remositorymultiremositorymulti.class.php on line 31
Line 31 is: $this->remUser =& new remositoryUser ($my->id,$my);
I cannot find reason PHP Notice. How it to correct? Can somebody help me?
2. The mode RSS link is not work: Fatal error: Call to undefined function sefRelToAbs() in C:mywebinf.ruwwwmodulesmod_remositorymultimod_remositorymultiremositorymulti.class.php on line 131
It seems is necessary: $sefurl = sefRelToAbs ($url); to replace on $sefurl = JRoute::_($url); It works.
3. The image calendar.gif is inaccessible, if the module shows from the submenu.
Possible correction:
remositorymulti.class.php line 100:
| Code: | if ($this->diconsize) $dateurl = "_img src='components/com_remository/images/calendar.gif' width='$this->diconsize' height='$this->
diconsize' alt='Date icon' /_";
|
to replace on:
| Code: | if ($this->diconsize) $dateurl = remositoryRepository::RemositoryImageURL('calendar.gif',16,16);
|
Post edited by: AlCher, at: 2008/06/21 12:18
|