summaryrefslogtreecommitdiff
path: root/plugins/UserFlag/flagprofileform.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2009-11-07 13:10:22 -0500
committerEvan Prodromou <evan@status.net>2009-11-07 13:10:22 -0500
commit55c7c943e7ac8fc7b89bea1a325087059903fbba (patch)
treeafe44e55b7e1bca1aedc36426f715e76a145e0f3 /plugins/UserFlag/flagprofileform.php
parentd9cde0ef80ee838a99035d44f0286b3cc902e332 (diff)
Simply flag a profile for review
Instead of trying to have lots of different flags on different objects, cut to the core of this functionality: flag a profile for moderator review.
Diffstat (limited to 'plugins/UserFlag/flagprofileform.php')
-rw-r--r--plugins/UserFlag/flagprofileform.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/UserFlag/flagprofileform.php b/plugins/UserFlag/flagprofileform.php
index 3f4834aac..0811dbb9d 100644
--- a/plugins/UserFlag/flagprofileform.php
+++ b/plugins/UserFlag/flagprofileform.php
@@ -115,7 +115,7 @@ class FlagProfileForm extends Form
*/
function formLegend()
{
- $this->out->element('legend', null, _('Flag this profile'));
+ $this->out->element('legend', null, _('Flag profile for review'));
}
/**
@@ -147,6 +147,6 @@ class FlagProfileForm extends Form
function formActions()
{
- $this->out->submit('submit', _('Flag'), 'submit', null, _('Flag this profile'));
+ $this->out->submit('submit', _('Flag'), 'submit', null, _('Flag profile for review'));
}
}