Let objectManager handle screenshot queue processing

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-03-13 00:26:31 +00:00
committed by WineHQ
parent 3c3e3a7ca4
commit b628b3af0e
4 changed files with 116 additions and 5 deletions

View File

@@ -954,7 +954,7 @@ class Version {
$oRow = mysql_fetch_object($hResult);
return "$oRow->appName $oRow->versionName";
}
}
function showList($hResult)
{
@@ -1132,6 +1132,13 @@ class Version {
return FALSE;
}
function objectMakeLink()
{
$sLink = "<a href=\"".BASE."appview.php?iVersionId=$this->iVersionId\">".
$this->sName."</a>";
return $sLink;
}
}
?>