Opened 16 years ago
Closed 16 years ago
#1486 closed defect (bug) (fixed)
BP 1.2 trunk Cannot Create Blog
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | major | |
| Severity: | Version: | ||
| Component: | Keywords: | ||
| Cc: |
Description
Cannot create a blog. wp-admin-bar's My Blogs > Create a Blog redirects to home page.
Solution: Buddypress > bp-core > bp-core-adminbar.php
Find create-a-blog and change it to create
Reference: http://buddypress.org/forums/topic/cannot-create-blog-since-upgrade
Change History (2)
Note: See
TracTickets for help on using
tickets.
Actually, line 166 in bp-core-adminbar.php
echo '<a href="' . $bp->loggedin_user->domain . $bp->blogs->slug . '/create-a-blog">' . __('Create a Blog!', 'buddypress') . '</a>';needs to be changed to
echo '<a href="'. $bp->root_domain .'/'. $bp->blogs->slug . '/create">' . __('Create a Blog!', 'buddypress') . '</a>';