diff options
Diffstat (limited to 'phpBB/modules/mcp')
-rw-r--r-- | phpBB/modules/mcp/mcp_warn.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/modules/mcp/mcp_warn.php b/phpBB/modules/mcp/mcp_warn.php index 40753def41..959b90079c 100644 --- a/phpBB/modules/mcp/mcp_warn.php +++ b/phpBB/modules/mcp/mcp_warn.php @@ -212,7 +212,7 @@ class mcp_warn } // There is no point issuing a warning to ignored users (ie anonymous and bots) - if ($user_row['user_type'] == USER_IGNORE) + if ($user_row['user_type'] == phpbb::USER_IGNORE) { trigger_error('CANNOT_WARN_ANONYMOUS'); } |