Plugin Directory

Changeset 2427296


Ignore:
Timestamp:
11/27/2020 01:27:22 PM (5 years ago)
Author:
devbunch
Message:

svn commit

Location:
master-elements/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • master-elements/trunk/changelog.txt

    r2427182 r2427296  
    1 27/11/2020
    2 
    3 Version 7.7
    4 
    5     [New] Mega Menu Fixes
    6 
    7 23/11/2020
     126/11/2020
    82
    93Version 7.6
  • master-elements/trunk/modules/theme-builder/me-cpt.php

    r2427182 r2427296  
    20222022    {
    20232023        global $wpdb;
     2024        $table_name = $wpdb->prefix . "posts";
    20242025             $postslist = $wpdb->get_results (
    2025                         "
    2026                         SELECT *
    2027                         FROM  wp_posts
    2028                         WHERE post_type =  'me_megamenu'
    2029                         AND post_status = 'publish'
    2030                         ORDER by post_title
    2031                         "
    2032                         );
    2033         $table_name = 'wp_posts';
     2026                        " SELECT * FROM  " . $table_name ."  WHERE post_type =  'me_megamenu' AND post_status = 'publish' ORDER by post_title " );
    20342027        $data = array();
    20352028        foreach ($postslist as $key => $post) {
  • master-elements/trunk/readme.txt

    r2421516 r2427296  
    6464
    6565== Changelog ==
     66
     67= 26/11/2020 Version 7.6 =
     68*  [Fix] Mega Menu Fixes
     69
    6670= 19/11/2020 Version 7.5 =
    6771*  [Fix] Mega Menu
Note: See TracChangeset for help on using the changeset viewer.