User and Group have the same errors!
Fatal error: Call to a member function getText() on a non-object in /svnmanager/svnmanager/RepositoryModule/UserPrivilegesEditPage.php on line 292
and
Fatal error: Call to a member function getText() on a non-object in /svnmanager/RepositoryModule/GroupPrivilegesEditPage.php on line 289
then there where a other error i fixed
I changed $data=&$vsm->encode(serialize($viewState)); in TPage to $ser = serialize($viewState); $data=&$vsm->encode($ser);
just for info :)
Thanks,
This has probably to do with that previously mentioned bug in php 5.0.5 and will probably be solved in the next release (with the new prado).
Kind regards, Marijn
Log in to post a comment.
User and Group have the same errors!
Fatal error: Call to a member function getText() on a non-object in /svnmanager/svnmanager/RepositoryModule/UserPrivilegesEditPage.php on line 292
and
Fatal error: Call to a member function getText() on a non-object in /svnmanager/RepositoryModule/GroupPrivilegesEditPage.php on line 289
then there where a other error i fixed
I changed
$data=&$vsm->encode(serialize($viewState));
in TPage to
$ser = serialize($viewState);
$data=&$vsm->encode($ser);
just for info :)
Thanks,
This has probably to do with that previously mentioned bug in php 5.0.5 and will probably be solved in the next release (with the new prado).
Kind regards,
Marijn