Opened 12 years ago
Closed 12 years ago
#23032 closed defect (bug) (fixed)
Call get_page_hierarchy without passing by reference in wp-includes/rewrite.php page_uri_index
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 3.7 | Priority: | normal |
Severity: | minor | Version: | 3.0 |
Component: | Warnings/Notices | Keywords: | has-patch |
Focuses: | Cc: |
Description
PHP Strict Standards: Only variables should be passed by reference in wp-includes/rewrite.php on line 825
Due to &$pages in the function declaration.
function get_page_hierarchy( &$pages, $page_id = 0 )
Instead of calling get_page_hierarchy with the full $wpdb->get_results as the arg, save the get_results to a variable and pass that to get_page_hierarchy.
$pages = $wpdb->get_results(...) $posts = get_page_hierarchy( $pages );
Attachments (1)
Change History (5)
Note: See
TracTickets for help on using
tickets.
Patch to call function with variable instead of referenced