URL_BASE is assumed to end with a /.
If you put another /, you end up with // in URLs.
This leads to a situation where you can have
one cookie for // and another for / - bad.
If this causes problems for any projects,
they should edit their project.inc accordingly
svn path=/trunk/boinc/; revision=14254
Make RSS feed link permanent guid rather than temporary.
- Better caching mechanism for hosts_user.php to prevent malicious user
from passing _GET[] strings that would lead to unbounded cache usage.
Also, checkin change to checkin_notes from Feb 20th that generated a conflict
which I didn't notice until now. Sorry....
svn path=/trunk/boinc/; revision=9523
that in general the right way to use _GET[] is like this:
$x=default_value;
if (isset($_GET["x"])) $x=$_GET["x"];
This prevents PHP notice-type error messages.
svn path=/trunk/boinc/; revision=6104