Add a page showing a user's queued submissions to the AppDB. This should be

quite useful for a user, and should also reduce the number of duplicate
submissions, as many users seem to think their submissions have been lost if
they are not accepted within a few hours.
This commit is contained in:
Alexander Nicolaysen Sørnes
2006-12-27 03:26:16 +00:00
committed by WineHQ
parent eb9e649d3d
commit 18acb017cd
5 changed files with 131 additions and 2 deletions

View File

@@ -47,6 +47,14 @@ function global_sidebar_login() {
$g->addmisc("<a href=\"".BASE."appview.php?iVersionId=$iVersionId\">".Application::lookup_name($iAppId)." ".Version::lookup_name($iVersionId)."</a>","center");
}
/* Display a link to the user's queued items,
but not for admins, as theirs are auto-accepted */
if(!$_SESSION['current']->hasPriv("admin"))
{
$g->addmisc("");
$g->addmisc("<a href=\"".BASE."queueditems.php\">Your queued items</a>");
}
}
else
{