Forums
-
- Forum
- Posts
-
- Installation
- 28,363
- Troubleshooting
- 62,094
- Themes
- 10,373
- Plugins
- 15,302
- Requests & Feedback
- 14,876
- Showcase
- 3,252
-
Hi,
I got around this issue, by doing this:
File : bb-includes/backpress/class.wp-users.php
Line: 307
$ids = join(‘,’, array_keys($trans));
The leading comma caused issues in the SQL query so I put an ltrim in front:
$ids = ltrim(join(‘,’, array_keys($trans)), ‘,’);
Error went away:)
See also: WordPress.org • bbPress.org • BuddyPress.org • Matt • Blog RSS