Menu

Some Errors with Privileges

Help
2005-11-07
2013-05-01
  • Dennis Philpot

    Dennis Philpot - 2005-11-07

    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 :)

     
    • Marijn Verkerk

      Marijn Verkerk - 2006-02-20

      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.