Fix labelling of category in app change mails by changing 'vendor' to 'category'

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-01-06 18:14:36 +00:00
committed by WineHQ
parent 3eca785210
commit 3883e13c4e

View File

@@ -216,7 +216,7 @@ class Application {
return false; return false;
$oCatBefore = new Category($oApp->iCatId); $oCatBefore = new Category($oApp->iCatId);
$oCatAfter = new Category($this->iCatId); $oCatAfter = new Category($this->iCatId);
$sWhatChanged .= "Vendor was changed from ".$oCatBefore->sName." to ".$oCatAfter->sName.".\n\n"; $sWhatChanged .= "Category was changed from ".$oCatBefore->sName." to ".$oCatAfter->sName.".\n\n";
} }
if($sWhatChanged and !$bSilent) if($sWhatChanged and !$bSilent)
$this->SendNotificationMail("edit",$sWhatChanged); $this->SendNotificationMail("edit",$sWhatChanged);