We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2225ca commit aac9ae1Copy full SHA for aac9ae1
www/common/AttachUser.php
@@ -116,9 +116,9 @@
116
117
if ($user->isApiUser()) {
118
$user->setUserPriority((int) Util::getSetting('api_priority', 7));
119
- } else if ($user->isPaid()) {
+ } elseif ($user->isPaid()) {
120
$user->setUserPriority((int) Util::getSetting('paid_priority', 6));
121
- } else if ($user->isFree()) {
+ } elseif ($user->isFree()) {
122
$user->setUserPriority((int) Util::getSetting('user_priority', 8));
123
} else {
124
$user->setUserPriority((int) Util::getSetting('anon_priority', 9));
0 commit comments