Changeset 1597119
- Timestamp:
- 02/16/2017 09:04:13 AM (9 years ago)
- Location:
- developer-share-buttons/trunk
- Files:
-
- 2 edited
-
developer-share-buttons.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
developer-share-buttons/trunk/developer-share-buttons.php
r1363508 r1597119 9 9 Plugin Name: Developer Share Buttons 10 10 Description: Share buttons with no CSS and no JavaScript 11 Version: 1.0. 711 Version: 1.0.8 12 12 Author: Grant Richmond 13 13 Author URI: https://grant.codes/ … … 355 355 } 356 356 357 $url = urlencode( $url );358 $title = urlencode( $title );359 $text = urlencode( $text );360 $image = urlencode( $image );357 $url = rawurlencode( $url ); 358 $title = rawurlencode( $title ); 359 $text = rawurlencode( $text ); 360 $image = rawurlencode( $image ); 361 361 362 362 $share_text = apply_filters( static::$slug_ . '_share_text', $share_text ); -
developer-share-buttons/trunk/readme.txt
r1363508 r1597119 3 3 Tags: share buttons, developer, social, share 4 4 Requires at least: 3.5 5 Tested up to: 4. 4.26 Stable tag: 1.0. 75 Tested up to: 4.7.2 6 Stable tag: 1.0.8 7 7 8 8 A super lightweight social sharing solution. No JavaScript. No images. No CSS. … … 96 96 * Add extra filters to add content before and after button text (useful for icons) 97 97 * Update coding standard 98 99 = 1.0.8 = 100 * Use `rawurlencode` to improve compatibility with some services
Note: See TracChangeset
for help on using the changeset viewer.