Skip to content

Commit

Permalink
Revised 'Verified' copy to better explain feature. Closes #1448
Browse files Browse the repository at this point in the history
  • Loading branch information
linc committed Aug 26, 2013
1 parent 37bbfbf commit 25e56fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions applications/dashboard/views/profile/helper_functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ function UserVerified($User) {

if (GetValue('Verified', $User)) {
$Label = T('Verified');
$Title = T('This user has been verified as a non-spammer.');
$Title = T('Verified Description', 'Verified users bypass spam and pre-moderation filters.');
$Url = "/user/verify.json?userid=$UserID&verified=0";
} else {
$Label = T('Not Verified');
$Title = T('This user has not been verified as a non-spammer.');
$Title = T('Not Verified Description', 'Unverified users are passed thru any enabled spam and pre-moderation filters.');
$Url = "/user/verify.json?userid=$UserID&verified=1";
}

Expand Down
2 changes: 1 addition & 1 deletion applications/dashboard/views/user/edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<?php endif; ?>
<li>
<?php
echo $this->Form->CheckBox('Verified', T('This user is verified as a non-spammer'), array('value' => '1'));
echo $this->Form->CheckBox('Verified', T('Verified Label', 'Verified. Bypasses spam and pre-moderation filters.'), array('value' => '1'));
?>
</li>
<li>
Expand Down

0 comments on commit 25e56fb

Please sign in to comment.