Add 'View Test Results' entry to admin sidebar. Enable testData deletion so we can either edit

or delete a given test entry.
This commit is contained in:
Chris Morgan
2007-06-11 23:51:29 +00:00
committed by WineHQ
parent 65a77980c7
commit 956186d1c1
2 changed files with 9 additions and 1 deletions

View File

@@ -936,8 +936,13 @@ class testData{
if($this->canEdit() or $this->sQueued == "rejected")
{
$shDeleteLink = "[ <a href=\"".$oObject->makeUrl("delete",
$this->iTestingId).
"\"> delete</a> ]";
$aCells[] = "[ <a href=\"".$oObject->makeUrl("edit",
$this->iTestingId)."\">$sEditLinkLabel</a> ]";
$this->iTestingId)."\">$sEditLinkLabel</a> ]".
$shDeleteLink;
}
echo html_tr($aCells, $this->sTestedRating);