1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-01 20:19:13 +02:00

Merge branch '3.3.x'

This commit is contained in:
Marc Alexander 2023-01-07 21:02:23 +01:00
commit 6980b7656c
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995
2 changed files with 2 additions and 2 deletions

View File

@ -98,7 +98,7 @@ class mcp_notes
$userrow = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
if (!$userrow)
if (!$userrow || (int) $userrow['user_id'] === ANONYMOUS)
{
trigger_error('NO_USER');
}

View File

@ -390,7 +390,7 @@ class mcp_warn
$user_row = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
if (!$user_row)
if (!$user_row || (int) $user_row['user_id'] === ANONYMOUS)
{
trigger_error('NO_USER');
}