Make the case of 'Version' match the case used in the constructor

This commit is contained in:
EA Durbin
2006-08-31 02:39:09 +00:00
committed by WineHQ
parent 988be2f138
commit d1c037e0ae
4 changed files with 6 additions and 6 deletions

View File

@@ -116,7 +116,7 @@ echo "<div align=center><table><tr>\n";
while ($oRow = mysql_fetch_object($Ids))
{
// display thumbnail
$oVersion = new version($oRow->versionId);
$oVersion = new Version($oRow->versionId);
$oApp = new Application($oVersion->iAppId);
$oScreenshot = new Screenshot($oRow->id);
$img = $oScreenshot->get_thumbnail_img();