Fix typo that was making it impossible to change an application's name

This commit is contained in:
Jonathan Ernst
2005-02-20 01:56:53 +00:00
committed by WineHQ
parent 25f3f01412
commit 1d8d755ec1

View File

@@ -155,7 +155,7 @@ class Application {
if ($sName && $sName!=$this->sName)
{
$sUpdate = compile_update_string(array('appName' => sName));
$sUpdate = compile_update_string(array('appName' => $sName));
if (!query_appdb("UPDATE appFamily SET ".$sUpdate." WHERE appId = ".$this->iAppId))
return false;
$sWhatChanged .= "Name was changed from ".$this->sName." to ".$sName.".\n\n";