Plugin Directory

Changeset 1124319


Ignore:
Timestamp:
03/31/2015 10:33:37 AM (11 years ago)
Author:
woorockets
Message:

Release version 1.0.9

Location:
wr-megamenu/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • wr-megamenu/trunk/README.txt

    r1114534 r1124319  
    8787 * Fixed Resizing feature doesn't work smooth
    8888 * Fixed Sub menu level 3 auto moved to level 1
     89
     90= 1.0.9 =
     91 * Fixed php errors detected by Query Monitor plugin
     92 * Fixed Bug with resizing Styling form
     93   
  • wr-megamenu/trunk/assets/3rd-party/joomlashine/js/jsn-modalresize.js

    r1001124 r1124319  
    3838            // Resize all wr-modal
    3939            $('.wr-dialog').each(function () {
    40                 if ( $(this).find('#jsn_view_modal').length ) {
     40                if ( $(this).find('#jsn_view_modal').length || $(this).find('#menu-styling').length ) {
    4141                    width = full_width;
    4242                } else {
  • wr-megamenu/trunk/includes/helpers/layout.php

    r1001124 r1124319  
    2929            include $file_path;
    3030        } else {
    31             __( '<h2>Template file not found.</h2>', WR_MEGAMENU_TEXTDOMAIN );
     31            '<h2>' . __( 'Template file not found.', WR_MEGAMENU_TEXTDOMAIN ) . '</h2>';
    3232        }
    3333    }
  • wr-megamenu/trunk/main.php

    r1114531 r1124319  
    44Plugin URI: http://woorockets.com
    55Description: WR MegaMenu
    6 Version: 1.0.8
     6Version: 1.0.9
    77Author: WooRockets
    88Author URI: http://woorockets.com
  • wr-megamenu/trunk/templates/menu-builder.php

    r1001124 r1124319  
    425425                            <?php
    426426foreach ( $locations as $key => $value ) {
    427     $selected = ( $key == $data['location'] ) ? 'selected="selected"' : '';
     427    $selected = ( isset($data['location']) && $key == $data['location'] ) ? 'selected="selected"' : '';
    428428    echo "<option value='" . $key . "' " . $selected . '>' . $value . '</option>';
    429429}
  • wr-megamenu/trunk/templates/modal.php

    r1001124 r1124319  
    161161            <input type="hidden" id="wr_previewing" value="0" />
    162162            <input id="shortcode_type" type="hidden" value="<?php echo esc_attr( $el_type ); ?>" />
    163             <input id="shortcode_name" type="hidden" value="<?php echo esc_attr( mysql_real_escape_string( $_GET['wr_modal_type'] ) ); ?>" />
     163            <input id="shortcode_name" type="hidden" value="<?php echo esc_attr( addslashes( $_GET['wr_modal_type'] ) ); ?>" />
    164164
    165165            <div class="jsn-modal-overlay"></div>
Note: See TracChangeset for help on using the changeset viewer.