Fix coding style issues

[MAILPOET-2003]
This commit is contained in:
Rostislav Wolny
2019-04-25 14:19:10 +02:00
committed by M. Shull
parent 7ac0218a5d
commit 9cba72edb2
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ class InactiveSubscribersController {
function reactivateInactiveSubscribers() {
$reactivate_all_inactive_query = sprintf(
"UPDATE %s SET status = '%s' WHERE status = '%s';",
Subscriber::$_table, Subscriber::STATUS_SUBSCRIBED, Subscriber::STATUS_INACTIVE
Subscriber::$_table, Subscriber::STATUS_SUBSCRIBED, Subscriber::STATUS_INACTIVE
);
\ORM::rawExecute($reactivate_all_inactive_query);
}