Opened 15 years ago
Closed 14 years ago
#18387 closed defect (bug) (fixed)
get_blog_id_from_url() has wrong return
| Reported by: | lonnylot | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 3.5 |
| Component: | Multisite | Version: | 3.0 |
| Severity: | minor | Keywords: | has-patch |
| Cc: | Focuses: |
Description
If the blog does not exist we sometimes return 0 and sometimes return false. Per the comment we should always be returning an int.
Attachments (3)
Change History (10)
#4
@
14 years ago
Version 0, edited 14 years ago by
(next)
#5
@
14 years ago
No to mention it is pretty much the same as domain_exists() and get_id_from_blogname().
#6
@
14 years ago
- Register blog-id-cache group as global
- Introduce clean_blog_cache() so we can run it independently of refresh_blog_details() which assumes the blog still exists and get_blog_details() can be called.
- Don't db escape cache keys
- Return 0 for all failures in get_blog_id_from_url()
- clean_blog_cache() after dropping tables in wpmu_delete_blog() to make sure the cache is for real cleaned.
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
This function needs a lot of help. It's cache is never invalidated and escaped data is used to create cache keys. We need to do something like we did for #20950.