From 3883e13c4eee7db08353f4c74df0df96a2f165af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Nicolaysen=20S=C3=B8rnes?= Date: Sat, 6 Jan 2007 18:14:36 +0000 Subject: [PATCH] Fix labelling of category in app change mails by changing 'vendor' to 'category' --- include/application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/application.php b/include/application.php index 33ebb6a..c96a351 100644 --- a/include/application.php +++ b/include/application.php @@ -216,7 +216,7 @@ class Application { return false; $oCatBefore = new Category($oApp->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) $this->SendNotificationMail("edit",$sWhatChanged);