#4516 closed defect (bug) (fixed)
Global $bp_unfiltered_uri removed in 1.6
Reported by: | DJPaul | Owned by: | |
---|---|---|---|
Milestone: | 1.6.2 | Priority: | normal |
Severity: | major | Version: | 1.6.1 |
Component: | Core | Keywords: | has-patch |
Cc: |
Description
The $bp_unfiltered_uri global was removed in BP 1.6. This has caused backpat issues with an old custom plugin. I cannot find any documentation or trac discussion about the removal of the global.
It seems to have been moved into $bp->unfiltered_uri, but should preserve the old global for backpat.
Attachments (1)
Change History (6)
#2
@
12 years ago
- Resolution set to fixed
- Status changed from new to closed
(In [6472]) Reinstate $bp_unfiltered_uri global for backpat. Fixes #4516
The $bp_unfiltered_uri global was removed in BP 1.6. This can cause backpat issues with plugins and customisations from old versions of BuddyPress. If you need to change this array, you should use buddypress()->unfiltered_uri instead of this global.
#3
@
12 years ago
(In [6473]) Reinstate $bp_unfiltered_uri global for backpat. Fixes #4516 (for 1.6 branch)
The $bp_unfiltered_uri global was removed in BP 1.6. This can cause backpat issues with plugins and customisations from old versions of BuddyPress. If you need to change this array, you should use buddypress()->unfiltered_uri instead of this global.
Attached patch for review.