Forums
-
- Forum
- Posts
-
- Installation
- 28,406
- Troubleshooting
- 62,339
- Themes
- 10,400
- Plugins
- 15,321
- Requests & Feedback
- 14,952
- Showcase
- 3,254
-
I came across the same problem on a combined wp/bbpress setup.
twas a simple case of changing line 1079, template-functions.php
$r = bb_get_option('uri') . "profile/" . $user->$column . ( 1 < $page ? "/page/$page" : '' );
to $r = bb_get_option('uri') . "profile/" . urlencode($user->$column) . ( 1 < $page ? "/page/$page" : '' );