mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 20:13:22 +01:00
Merge remote-tracking branch 'Senky/ticket/10846' into develop-olympus
* Senky/ticket/10846: [ticket/10846] fixing SQL query bug in acp_main.php
This commit is contained in:
commit
8cb0e30afc
@ -201,7 +201,7 @@ class acp_main
|
||||
// No maximum post id? :o
|
||||
if (!$max_post_id)
|
||||
{
|
||||
$sql = 'SELECT MAX(post_id)
|
||||
$sql = 'SELECT MAX(post_id) as max_post_id
|
||||
FROM ' . POSTS_TABLE;
|
||||
$result = $db->sql_query($sql);
|
||||
$max_post_id = (int) $db->sql_fetchfield('max_post_id');
|
||||
|
Loading…
x
Reference in New Issue
Block a user