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

@@ -85,11 +85,11 @@ if ($aClean['sSub'])
{
util_show_error_page_and_exit("Insufficient privileges.");
} else
$oVersion = new version($oTest->iVersionId);
$oVersion = new Version($oTest->iVersionId);
} else
{
$oTest->iVersionId = $aClean['iVersionId'];
$oVersion = new version($aClean['iVersionId']);
$oVersion = new Version($aClean['iVersionId']);
$oTest->sQueued = "new";
}
if ($aClean['sSub'] == 'view')