Plugin Directory

Changeset 3434702


Ignore:
Timestamp:
01/07/2026 09:00:36 PM (3 months ago)
Author:
socialrocket
Message:

Version 1.3.4.2 update

Location:
social-rocket/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • social-rocket/trunk/includes/class-social-rocket.php

    r3347243 r3434702  
    12891289     * [socialrocket-floating], or via the global function socal_rocket_floating().
    12901290     *
    1291      * @version 1.3.4.1
     1291     * @version 1.3.4.2
    12921292     * @since   1.0.0
    12931293     *
     
    15131513        // wrapper classes
    15141514        if ( isset( $args['add_class'] ) ) {
    1515             $classes .= ' ' . esc_html( $args['add_class'] );
     1515            $classes .= ' ' . $args['add_class'];
    15161516        }
    15171517   
    15181518        // begin button bar wrapper
    15191519        $output = '<div id="social-rocket-floating-buttons"'
    1520                     . ' class="' . $classes . '"'
    1521                     . ' style="' . $styles . '"'
     1520                    . ' class="' . esc_attr( $classes ) . '"'
     1521                    . ' style="' . esc_attr( $styles ) . '"'
    15221522                    . '>';
    15231523       
     
    17091709     * [socialrocket], or via the global function socal_rocket().
    17101710     *
    1711      * @version 1.3.4.1
     1711     * @version 1.3.4.2
    17121712     * @since   1.0.0
    17131713     *
     
    18981898        $classes = 'social-rocket-inline-buttons';
    18991899        if ( isset( $args['add_class'] ) ) {
    1900             $classes .= ' ' . esc_html( $args['add_class'] );
     1900            $classes .= ' ' . $args['add_class'];
    19011901        }
    19021902       
     
    19311931       
    19321932        // begin main wrapper div
    1933         $output .= '<div class="' . $classes . '">';
     1933        $output .= '<div class="' . esc_attr( $classes ) . '">';
    19341934       
    19351935        // heading text
     
    21822182     * or via the global function socal_rocket_tweet().
    21832183     *
    2184      * @version 1.3.4.1
     2184     * @version 1.3.4.2
    21852185     * @since   1.0.0
    21862186     *
     
    22482248        }
    22492249       
    2250         $extra_classes = esc_html( $this->_isset( $args['add_class'], '' ) );
     2250        $extra_classes = $this->_isset( $args['add_class'], '' );
    22512251        if ( $this->_isset( $args['style_id'] ) ) {
    22522252            $extra_classes .= ( $extra_classes ? ' ' : '' ) . 'social-rocket-tweet-style-'.$args['style_id'];
     
    22772277       
    22782278        // begin click to tweet wrapper
    2279         $output .= '<div class="social-rocket-tweet' . ( $extra_classes ? ' ' . $extra_classes : '' ) . '">';
     2279        $output .= '<div class="social-rocket-tweet' . ( $extra_classes ? ' ' . esc_attr( $extra_classes ) : '' ) . '">';
    22802280       
    22812281        // begin anchor
  • social-rocket/trunk/readme.txt

    r3347243 r3434702  
    44Tags: social share, social buttons, social share buttons, social media, share counts, social sharing, click to tweet, social rocket, facebook share, social media share, pinterest description, social media sharing
    55Requires at least: 4.4
    6 Tested up to: 6.8
     6Tested up to: 6.9
    77Requires PHP: 5.5
    8 Stable tag: 1.3.4.1
     8Stable tag: 1.3.4.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8383
    8484== Changelog ==
     85= 1.3.4.2 =
     86* UPDATE: style changes required by wordpress.org.
     87
    8588= 1.3.4.1 =
    8689* FIX: sanitization issues, nonce checking.
  • social-rocket/trunk/social-rocket.php

    r3347243 r3434702  
    33 * Plugin Name: Social Rocket
    44 * Description: Social Sharing... to the Moon!
    5  * Version: 1.3.4.1
     5 * Version: 1.3.4.2
    66 * Author: Social Rocket
    77 * Author URI: http://wpsocialrocket.com/
     
    1010 * Domain Path: /languages
    1111 *
    12  * Copyright: © 2018-2025 Social Rocket. All rights reserved.
     12 * Copyright: © 2018-2026 Social Rocket. All rights reserved.
    1313*/
    1414
     
    2121}
    2222
    23 define( 'SOCIAL_ROCKET_VERSION', '1.3.4.1' );
     23define( 'SOCIAL_ROCKET_VERSION', '1.3.4.2' );
    2424define( 'SOCIAL_ROCKET_DBVERSION', '5' );
    2525define( 'SOCIAL_ROCKET_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.