collabtive 0.6.1 bug fix
Found one bug in collabtive 0.6.1 , you will received the following error whenever you try to update the task.
To fix this error , change line 25 & 26 in the file \include\class.task.php
from
to
. Hope this will help.
I found the fix from this page : http://www.penglixun.com/life/diary/frist_contribution_for_open_source.html
---
Fatal error: Call to a member function callSignalFuncs() on a non-object in /opt/lampp/htdocs/pm/include/class.task.php on line 118
To fix this error , change line 25 & 26 in the file \include\class.task.php
from
$this->mylog = new mylog;
$plugin = new plugin();
to
$this->mylog = new mylog();
$this->plugins = new plugin();
. Hope this will help.
I found the fix from this page : http://www.penglixun.com/life/diary/frist_contribution_for_open_source.html
---
thanks for the tip.
ReplyDeleteHere is a patch i wrote.