mirror of
https://github.com/phpbb/phpbb.git
synced 2025-04-19 23:32:02 +02:00
Merge branch 'bug/bantu/9108' into develop-olympus
* bug/bantu/9108: [bug/9108] Fix table binding issues with PostgreSQL in board-wide feed. (Old Bug #58425) Conflicts: phpBB/docs/CHANGELOG.html
This commit is contained in:
commit
a2545d1203
@ -108,6 +108,7 @@
|
||||
<li>[Fix] Redirect search engines that access pages with SIDs in the URL. (Bug #58025)</li>
|
||||
<li>[Fix] Fix incorrect ampersand encoding in redirect parameter. (Bug #58465)</li>
|
||||
<li>[Fix] Fix open_basedir issues when accessing styles- and language-management. (Bug #59135)</li>
|
||||
<li>[Fix] Fix table binding issues with PostgreSQL in board-wide feed. (Bug #58425)</li>
|
||||
<li>[Feature] Support for Microsoft's Native SQL Server Driver for PHP (Bug #57055 - Patch by Chris Pucci at Microsoft)</li>
|
||||
<li>[Feature] The memcache acm plugin now supports multiple memcache servers.</li>
|
||||
</ul>
|
||||
|
@ -783,8 +783,8 @@ class phpbb_feed_overall extends phpbb_feed_post_base
|
||||
'p.post_id, p.topic_id, p.post_time, p.post_subject, p.post_text, p.bbcode_bitfield, p.bbcode_uid, p.enable_bbcode, p.enable_smilies, p.enable_magic_url, ' .
|
||||
'u.username, u.user_id',
|
||||
'FROM' => array(
|
||||
POSTS_TABLE => 'p',
|
||||
USERS_TABLE => 'u',
|
||||
POSTS_TABLE => 'p',
|
||||
),
|
||||
'LEFT_JOIN' => array(
|
||||
array(
|
||||
|
Loading…
x
Reference in New Issue
Block a user