Changeset 1252913
- Timestamp:
- 09/24/2015 07:32:55 PM (11 years ago)
- Location:
- zbplayer/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
zbPlayer.admin.php (modified) (1 diff)
-
zbPlayer.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
zbplayer/trunk/readme.txt
r1185089 r1252913 4 4 Tags: mp3, flash player, audio, easy control, noJS, small mp3 player, embed, media player, music player, mp3 player, cyrillic mp3 player, facebook share, share mp3, m4a, m4b, mp4, m4a player, m4b player, mp4 player, wav, wav player 5 5 Requires at least: 3.5 6 Tested up to: 4. 2.27 Stable tag: 2.1.1 06 Tested up to: 4.3.1 7 Stable tag: 2.1.11 8 8 License: Dual Licensed under the MIT and GPLv2 or later 9 9 … … 51 51 52 52 == Changelog == 53 54 = 2.1.11 = 55 * Tested up to Wordpress version 4.3.1 56 * Fixed problem with display symbols like "’" 53 57 54 58 = 2.1.10 = -
zbplayer/trunk/zbPlayer.admin.php
r1184887 r1252913 1 1 <?php 2 2 /** 3 * zbPlayer Wordpress Plugin4 * (c) 2013-2015 Vladimir Gilevich5 * Dual Licensed under the MIT and GPL licenses3 * zbPlayer Wordpress Plugin 4 * (c) 2013-2015 Vladimir Gilevich 5 * Dual Licensed under the MIT and GPL licenses 6 6 * See license.txt, included with this package for more 7 7 * 8 * zbPlayer.admin.php9 * Release 2.1.1 0 June20158 * zbPlayer.admin.php 9 * Release 2.1.11 September 2015 10 10 */ 11 11 -
zbplayer/trunk/zbPlayer.php
r1185087 r1252913 4 4 Plugin URI: http://gilevich.com/portfolio/zbplayer 5 5 Description: Converts mp3 files links to a small flash player and a link to download file mp3 file. Also you can share your mp3 files with that plugin. 6 Version: 2.1.1 06 Version: 2.1.11 7 7 Author: Vladimir Gilevich 8 8 Author URI: http://gilevich.com/ … … 10 10 */ 11 11 12 define('ZBPLAYER_VERSION', "2.1.1 0");12 define('ZBPLAYER_VERSION', "2.1.11"); 13 13 define('ZBPLAYER_DEFAULT_WIDTH', "500"); 14 14 define('ZBPLAYER_DEFAULT_INITIALVOLUME', "60"); … … 173 173 $link = $link[0]; 174 174 $name = str_replace('_', ' ', strip_tags($matches[0])); 175 $titles = str_replace('–', '-', $name); 176 $titles = str_replace('—', '-', $name); 177 $titles = str_replace('&', '&', $titles); 178 $titles = str_replace('&', '&', $titles); 175 $titles = str_replace( 176 array('–', '—', '’', '‘', '&', '&'), 177 array('-', '-', "'", "'", '&', '&'), 178 $name 179 ); 180 $titles = str_replace( 181 array('%26%238211%3B', '%26%238212%3B', '%26%238217%3B', '%26%238216%3B', '%26%23038%3B'), 182 array('-', '-', "'", "'", '&'), 183 $titles 184 ); 179 185 if (get_option('zbp_download') == 'true') { 180 186 $linkInfo = zbp_mb_pathinfo($link);
Note: See TracChangeset
for help on using the changeset viewer.