mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 09:41:40 +09:00
Fix inconsistent defaults for anonymous vote and scrap notification
This commit is contained in:
parent
e25658d371
commit
9256503bea
1 changed files with 2 additions and 2 deletions
|
|
@ -553,7 +553,7 @@ class ncenterliteModel extends ncenterlite
|
|||
|
||||
// Voted.
|
||||
case 'V':
|
||||
if($config->anonymous_voter === 'Y')
|
||||
if($config->anonymous_voter !== 'N')
|
||||
{
|
||||
$str = sprintf(lang('ncenterlite_vote_anonymous'), $notification->target_summary, $type);
|
||||
}
|
||||
|
|
@ -565,7 +565,7 @@ class ncenterliteModel extends ncenterlite
|
|||
|
||||
// Scrapped.
|
||||
case 'R':
|
||||
if($config->anonymous_scrap === 'Y')
|
||||
if($config->anonymous_scrap !== 'N')
|
||||
{
|
||||
$str = sprintf(lang('ncenterlite_scrap_anonymous'), $notification->target_summary, $type);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue