Opened 12 years ago
Closed 12 years ago
#22055 closed enhancement (invalid)
in wp-activate.php variable $wp_object_cache should be declared before being used
Reported by: | nunomorgadinho | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | |
Component: | General | Keywords: | has-patch |
Focuses: | Cc: |
Description
Minor stuff but $wp_object_cache should be declared before being used in wp-activate.php.
Attachments (1)
Change History (2)
Note: See
TracTickets for help on using
tickets.
It's declared in
wp-includes/cache.php
, which is included earlier as a part of WordPress environment.In
wp-activate.php
, it's only used in global scope, so there's no need to declare it as global.