Make the case of 'Application' class match the case used to define the class. Php doesn't care but its a nice touch.

This commit is contained in:
EA Durbin
2006-08-30 22:27:07 +00:00
committed by WineHQ
parent f338b98845
commit 320b8c0d82
5 changed files with 6 additions and 6 deletions

View File

@@ -50,7 +50,7 @@ if($oVendor->iVendorId)
echo '<br />Applications by '.$oVendor->sName.'<br /><ol>',"\n";
foreach($oVendor->aApplicationsIds as $iAppId)
{
$oApp = new application($iAppId);
$oApp = new Application($iAppId);
echo '<li> <a href="appview.php?iAppId='.$oApp->iAppId.'">'.$oApp->sName.'</a> </li>',"\n";
}
echo '</ol>',"\n";