Forums
-
- Forum
- Posts
-
- Installation
- 28,531
- Troubleshooting
- 62,748
- Themes
- 10,443
- Plugins
- 15,383
- Requests & Feedback
- 14,983
- Showcase
- 3,257
-
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" : '' );