mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-19 08:01:27 +02:00
[feature/attach-dl] Remove backticks from SQL query.
PHPBB3-11042
This commit is contained in:
@@ -392,13 +392,13 @@ else
|
||||
|
||||
if ($post_id)
|
||||
{
|
||||
$sql = 'SELECT `post_subject`
|
||||
$sql = 'SELECT post_subject
|
||||
FROM ' . POSTS_TABLE . "
|
||||
WHERE post_id = $post_id";
|
||||
}
|
||||
else
|
||||
{
|
||||
$sql = 'SELECT `topic_title`
|
||||
$sql = 'SELECT topic_title
|
||||
FROM ' . TOPICS_TABLE . "
|
||||
WHERE topic_id = $topic_id";
|
||||
}
|
||||
|
Reference in New Issue
Block a user