1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-28 02:30:29 +02:00

[ticket/9687] Adjust queries to be compatible with postgres

PHPBB3-9687
This commit is contained in:
Marc Alexander
2023-07-31 16:41:34 +02:00
parent 0414536727
commit 0be1ffd296
5 changed files with 11 additions and 7 deletions

View File

@@ -225,9 +225,9 @@ class ban_manager_test extends \phpbb_session_test_case
'email',
[
[
'ban_id' => '9',
'ban_id' => '5',
'ban_userid' => 0,
'ban_item' => '*@foo.bar',
'ban_item' => 'bar@example.org',
'ban_start' => '1111',
'ban_end' => '0',
'ban_reason' => 'HAHAHA',
@@ -235,9 +235,9 @@ class ban_manager_test extends \phpbb_session_test_case
'ban_mode' => 'email',
],
[
'ban_id' => '5',
'ban_id' => '9',
'ban_userid' => 0,
'ban_item' => 'bar@example.org',
'ban_item' => '*@foo.bar',
'ban_start' => '1111',
'ban_end' => '0',
'ban_reason' => 'HAHAHA',