I downloaded the new 1.10rc-2 today, and I don't know if it was supposed to have it but I kept getting an error in header.inc.php (mine said line 5):EmailAddress:() must return a string value This is the line:$signin_url = ROOT_PATH . "login.php"    . ($thisclient ? "?e=".urlencode($thisclient->getEmail()) : "");I in class.user.php that line 599 was missing (intentional or not) a cast to string:    function __toString() {        return $this->address;    }I put:    function __toString() {        return (string)$this->address;    }I noticed on Github the string conversion is present, line 604.

1.10rc2 is a release candidate and should not be used in a production enviornment.  It is also old and has had many fixes, updates, and code changes at github where the devs have asked for bug reports to be made.

I had a notification when I logged in about it, so I downloaded it.  It must be an old alert I had an email on osticket.  Is there a newer version?

No?http://osticket.com/downloadCurrent: 1.9.12

I saw that one.  I meant a newer release candidate.

Write a Reply...