mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 13:58:54 +00:00
[feature/prune-users] Split one line into two lines for readability.
PHPBB3-9622
This commit is contained in:
parent
b76454dd83
commit
0f36e15f86
1 changed files with 2 additions and 1 deletions
|
@ -408,7 +408,8 @@ class acp_prune
|
||||||
$joined_after[2] += 1;
|
$joined_after[2] += 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
$joined_sql = ' AND user_regdate BETWEEN ' . gmmktime(0, 0, 0, (int) $joined_after[1], (int) $joined_after[2], (int) $joined_after[0]) . ' AND ' . gmmktime(0, 0, 0, (int) $joined_before[1], (int) $joined_before[2], (int) $joined_before[0]);
|
$joined_sql = ' AND user_regdate BETWEEN ' . gmmktime(0, 0, 0, (int) $joined_after[1], (int) $joined_after[2], (int) $joined_after[0]) .
|
||||||
|
' AND ' . gmmktime(0, 0, 0, (int) $joined_before[1], (int) $joined_before[2], (int) $joined_before[0]);
|
||||||
}
|
}
|
||||||
else if (empty($joined_before) && !empty($joined_after))
|
else if (empty($joined_before) && !empty($joined_after))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue