Plugin Directory

Changeset 944924


Ignore:
Timestamp:
07/08/2014 12:55:17 PM (12 years ago)
Author:
AlphaGolf_fr
Message:

Update the trunk with 0.29.12

Location:
wp-symposium-toolbar/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-symposium-toolbar/trunk/readme.txt

    r943738 r944924  
    99Tested up to: 3.9
    1010Stable tag: 0.29.0
    11 Version: 0.29.11
     11Version: 0.29.12
    1212License: GPLv2 or later
    1313License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • wp-symposium-toolbar/trunk/wp-symposium-toolbar.php

    r943738 r944924  
    1111Tested up to: 3.9
    1212Stable tag: 0.29.0
    13 Version: 0.29.11
     13Version: 0.29.12
    1414License: GPLv2 or later
    1515License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2323// Increase Build nr at each version
    2424global $wpst_buildnr;
    25 $wpst_buildnr = 2911;
     25$wpst_buildnr = 2912;
    2626
    2727
  • wp-symposium-toolbar/trunk/wp-symposium-toolbar_admin_functions.php

    r943738 r944924  
    15301530                        // Get post data for these items, and add nav_menu_item data
    15311531                        if ( $items ) {
    1532                             $sql = "SELECT * FROM ".$wpdb->base_prefix."posts WHERE ID IN ( ".implode( ",", $items )." ) AND post_type = 'nav_menu_item' AND post_status = 'publish' ORDER BY menu_order ASC ";
     1532                            global $blog_id;
     1533                            $wpdb_prefix = ( $blog_id == "1" ) ? $wpdb->base_prefix : $wpdb->base_prefix.$blog_id."_";
     1534                            $sql = "SELECT * FROM ".$wpdb_prefix."posts WHERE ID IN ( ".implode( ",", $items )." ) AND post_type = 'nav_menu_item' AND post_status = 'publish' ORDER BY menu_order ASC ";
    15331535                            $menu_items = array_map( 'wp_setup_nav_menu_item', $wpdb->get_results( $sql ) );
    15341536                        }
Note: See TracChangeset for help on using the changeset viewer.