Plugin Directory

Changeset 3155652


Ignore:
Timestamp:
09/21/2024 09:25:27 AM (17 months ago)
Author:
LogicHunt
Message:

Updated Plugin Securities.

Location:
wp-counter-up
Files:
107 added
3 edited

Legend:

Unmodified
Added
Removed
  • wp-counter-up/trunk/README.txt

    r3081228 r3155652  
    55Requires at least: 5.5
    66Tested up to: 6.5.2
    7 Stable tag: 2.3.0
     7Stable tag: 2.4.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    130130== Changelog ==
    131131
     132= 2.4.0 =
     133* Updated Plugin Securities.
     134* Check Latest Compatibility.
     135
    132136= 2.1.0 =
    133137* Corrected the shortcode name.
  • wp-counter-up/trunk/admin/partials/meta_fields_display_for_post_lgx_counter.php

    r3081225 r3155652  
    2020
    2121
    22 $counter_number        = isset( $fieldValues['counter_number'] ) ? $fieldValues['counter_number'] : '';
    23 $counter_desc          = isset( $fieldValues['counter_desc'] ) ? $fieldValues['counter_desc'] : '';
     22$counter_number        = isset( $fieldValues['counter_number'] ) ? esc_attr($fieldValues['counter_number']) : '';
     23$counter_desc          = isset( $fieldValues['counter_desc'] ) ? esc_attr($fieldValues['counter_desc']) : '';
    2424
    2525
     
    3838                <th valign="top">
    3939                    <h4 class="lgx_app_meta_label"><label for="lgx_field_counter_number"><?php _e( 'Count Value', $this->plugin_name ) ?></label></h4>
    40                     <p class="lgx_input_desc lgx_app_meta_desc">Add number or text for count.</p>
     40                    <p class="lgx_input_desc lgx_app_meta_desc"><?php _e( 'Add number or text for count.', $this->plugin_name ) ?></p>
    4141                </th>
    4242                <td>
    43                     <input type="text" name="metaboxlgxmilestone[counter_number]" class="lgx_field_counter_number"  style="width: 25%;" value="<?php echo $counter_number; ?>" />
     43                    <input type="text" name="metaboxlgxmilestone[counter_number]" class="lgx_field_counter_number"  style="width: 25%;" value="<?php echo esc_attr($counter_number); ?>" />
    4444                </td>
    4545            </tr>
     
    4848                <th valign="top">
    4949                    <h4 class="lgx_app_meta_label"><label for="lgx_field_counter_desc"><?php _e( 'Description', $this->plugin_name ) ?></label></h4>
    50                     <p class="lgx_input_desc lgx_app_meta_desc">Add item details here ( Optional).</p>
     50                    <p class="lgx_input_desc lgx_app_meta_desc"><?php _e( 'Add item details here ( Optional).', $this->plugin_name ) ?></p>
    5151                </th>
    5252                <td>
    53                     <textarea rows="5" cols="45"  name="metaboxlgxmilestone[counter_desc]" class="lgx_field_counter_desc" style="width: 25%;" placeholder="Description"><?php echo $counter_desc; ?></textarea>
     53                    <textarea rows="5" cols="45"  name="metaboxlgxmilestone[counter_desc]" class="lgx_field_counter_desc" style="width: 25%;" placeholder="Description"><?php echo esc_attr($counter_desc); ?></textarea>
    5454                </td>
    5555            </tr>
  • wp-counter-up/trunk/wp-counter-up.php

    r3081225 r3155652  
    1111 * Plugin URI:        http://logichunt.com/product/wordpress-counter-up
    1212 * Description:       This is a short description of what the plugin does. It's displayed in the WordPress admin area.
    13  * Version:           2.3.0
     13 * Version:           2.4.0
    1414 * Author:            LogicHunt Inc.
    1515 * Author URI:        http://logichunt.com
     
    3333
    3434//plugin definition specific constants
    35 defined( 'LGX_WCU_PLUGIN_VERSION' )        or define( 'LGX_WCU_PLUGIN_VERSION', '2.1.0' );
     35defined( 'LGX_WCU_PLUGIN_VERSION' )        or define( 'LGX_WCU_PLUGIN_VERSION', '2.4.0' );
    3636defined( 'LGX_WCU_WP_PLUGIN' )             or define( 'LGX_WCU_WP_PLUGIN', 'wp-counter-up' );
    3737defined( 'LGX_WCU_PLUGIN_BASE' )           or define( 'LGX_WCU_PLUGIN_BASE', plugin_basename( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.