When vendor changes display before and after vendors instead of displaying the before vendor

twice.
This commit is contained in:
Alexander Nicolaysen Sørnes
2006-04-16 16:33:41 +00:00
committed by WineHQ
parent 0d9766059c
commit 300ad22e4b

View File

@@ -188,7 +188,7 @@ class Application {
return false;
$oVendorBefore = new Vendor($oApp->iVendorId);
$oVendorAfter = new Vendor($this->iVendorId);
$sWhatChanged .= "Vendor was changed from ".$oVendorBefore->sName." to ".$oVendorBefore->sName.".\n\n";
$sWhatChanged .= "Vendor was changed from ".$oVendorBefore->sName." to ".$oVendorAfter->sName.".\n\n";
}
if ($this->iCatId && ($this->iCatId!=$oApp->iCatId))