Changeset 3434702
- Timestamp:
- 01/07/2026 09:00:36 PM (3 months ago)
- Location:
- social-rocket/trunk
- Files:
-
- 3 edited
-
includes/class-social-rocket.php (modified) (8 diffs)
-
readme.txt (modified) (2 diffs)
-
social-rocket.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
social-rocket/trunk/includes/class-social-rocket.php
r3347243 r3434702 1289 1289 * [socialrocket-floating], or via the global function socal_rocket_floating(). 1290 1290 * 1291 * @version 1.3.4. 11291 * @version 1.3.4.2 1292 1292 * @since 1.0.0 1293 1293 * … … 1513 1513 // wrapper classes 1514 1514 if ( isset( $args['add_class'] ) ) { 1515 $classes .= ' ' . esc_html( $args['add_class'] );1515 $classes .= ' ' . $args['add_class']; 1516 1516 } 1517 1517 1518 1518 // begin button bar wrapper 1519 1519 $output = '<div id="social-rocket-floating-buttons"' 1520 . ' class="' . $classes. '"'1521 . ' style="' . $styles. '"'1520 . ' class="' . esc_attr( $classes ) . '"' 1521 . ' style="' . esc_attr( $styles ) . '"' 1522 1522 . '>'; 1523 1523 … … 1709 1709 * [socialrocket], or via the global function socal_rocket(). 1710 1710 * 1711 * @version 1.3.4. 11711 * @version 1.3.4.2 1712 1712 * @since 1.0.0 1713 1713 * … … 1898 1898 $classes = 'social-rocket-inline-buttons'; 1899 1899 if ( isset( $args['add_class'] ) ) { 1900 $classes .= ' ' . esc_html( $args['add_class'] );1900 $classes .= ' ' . $args['add_class']; 1901 1901 } 1902 1902 … … 1931 1931 1932 1932 // begin main wrapper div 1933 $output .= '<div class="' . $classes. '">';1933 $output .= '<div class="' . esc_attr( $classes ) . '">'; 1934 1934 1935 1935 // heading text … … 2182 2182 * or via the global function socal_rocket_tweet(). 2183 2183 * 2184 * @version 1.3.4. 12184 * @version 1.3.4.2 2185 2185 * @since 1.0.0 2186 2186 * … … 2248 2248 } 2249 2249 2250 $extra_classes = esc_html( $this->_isset( $args['add_class'], '' ));2250 $extra_classes = $this->_isset( $args['add_class'], '' ); 2251 2251 if ( $this->_isset( $args['style_id'] ) ) { 2252 2252 $extra_classes .= ( $extra_classes ? ' ' : '' ) . 'social-rocket-tweet-style-'.$args['style_id']; … … 2277 2277 2278 2278 // 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 ) : '' ) . '">'; 2280 2280 2281 2281 // begin anchor -
social-rocket/trunk/readme.txt
r3347243 r3434702 4 4 Tags: 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 5 5 Requires at least: 4.4 6 Tested up to: 6. 86 Tested up to: 6.9 7 7 Requires PHP: 5.5 8 Stable tag: 1.3.4. 18 Stable tag: 1.3.4.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 83 83 84 84 == Changelog == 85 = 1.3.4.2 = 86 * UPDATE: style changes required by wordpress.org. 87 85 88 = 1.3.4.1 = 86 89 * FIX: sanitization issues, nonce checking. -
social-rocket/trunk/social-rocket.php
r3347243 r3434702 3 3 * Plugin Name: Social Rocket 4 4 * Description: Social Sharing... to the Moon! 5 * Version: 1.3.4. 15 * Version: 1.3.4.2 6 6 * Author: Social Rocket 7 7 * Author URI: http://wpsocialrocket.com/ … … 10 10 * Domain Path: /languages 11 11 * 12 * Copyright: © 2018-202 5Social Rocket. All rights reserved.12 * Copyright: © 2018-2026 Social Rocket. All rights reserved. 13 13 */ 14 14 … … 21 21 } 22 22 23 define( 'SOCIAL_ROCKET_VERSION', '1.3.4. 1' );23 define( 'SOCIAL_ROCKET_VERSION', '1.3.4.2' ); 24 24 define( 'SOCIAL_ROCKET_DBVERSION', '5' ); 25 25 define( 'SOCIAL_ROCKET_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.