Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Farning <dfarning@gmail.com>2009-03-20 16:28:51 (GMT)
committer David Farning <dfarning@gmail.com>2009-03-20 16:28:51 (GMT)
commit5899d291204a44b991fd650a59c09936f04957ef (patch)
tree9c50ef1a345c84bc495c156fd431ccd3534a9e21
parent8c731dd5a40455f7a5c8f85cd2e815c19794f285 (diff)
fix subject line in editor email
-rw-r--r--site/app/controllers/components/editors.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/site/app/controllers/components/editors.php b/site/app/controllers/components/editors.php
index 25bc349..0abb343 100644
--- a/site/app/controllers/components/editors.php
+++ b/site/app/controllers/components/editors.php
@@ -137,7 +137,7 @@ class EditorsComponent extends Object {
if ($data['Approval']['ActionField'] != 'superreview') {
$this->controller->Email->template = 'email/nominated/'.$data['Approval']['ActionField'];
$this->controller->Email->to = $emailInfo['email'];
- $this->controller->Email->subject = sprintf(_('Mozilla Add-ons: %s Nomination'), $emailInfo['name']);
+ $this->controller->Email->subject = sprintf(_('Sugar Labs Activities: %s Nomination'), $emailInfo['name']);
}
else {
$this->controller->Email->template = 'email/superreview';
@@ -268,7 +268,7 @@ class EditorsComponent extends Object {
if ($data['Approval']['ActionField'] != 'superreview') {
$this->controller->Email->template = 'email/pending/'.$data['Approval']['ActionField'];
$this->controller->Email->to = $emailInfo['email'];
- $this->controller->Email->subject = sprintf(_('Mozilla Add-ons: %s %s'), $emailInfo['name'], $emailInfo['version']);
+ $this->controller->Email->subject = sprintf(_('Sugar Labs Activities: %s %s'), $emailInfo['name'], $emailInfo['version']);
}
else {
$this->controller->Email->template = 'email/superreview';