Right, so I noticed that I needed this entry in the table in order for non-admins to be able to see coverage code. For other potential users with this problem, the manual commands are (I think this is correct, sql experts may correct me):<br>
<br>USE <database>;<br>ALTER TABLE project ADD uploadquota bigint(20) NULL DEFAULT 0 AFTER autoremovemaxbuilds;<br>ALTER TABLE project ADD showcoveragecode tinyint(4) NULL DEFAULT 1 AFTER tokenduration;<br><br>This adds the two missing columns in the table project, one of which was definitely needed for me.<br>
<div class="gmail_extra"><br><br><div class="gmail_quote">On 23 November 2012 14:17, Yngve Levinsen <span dir="ltr"><<a href="mailto:yngve.levinsen@gmail.com" target="_blank">yngve.levinsen@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Noticed a new problem after upgrade from 1.8.2. The table project is missing the entry 'showcoveragecode'. This has the effect that if I want to look at a coverage report, I get the error message 'This project doesn't exist.'. Looking at the source I figured out that this was because the sql query on line 65 in file viewCoverage.php fails.<br>

<br>My quick&dirty solution was simply to edit this line and remove the showcoveragecode from the sql query. Not shure if this will break something else though...<br><br>Cheers,<br>Yngve<br>
</blockquote></div><br></div>