Changeset 1338499
- Timestamp:
- 01/28/2016 11:05:15 PM (10 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
r1269785 r1338499 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. 3.17 Stable tag: 2.1.1 26 Tested up to: 4.4.1 7 Stable tag: 2.1.13 8 8 License: Dual Licensed under the MIT and GPLv2 or later 9 9 … … 51 51 52 52 == Changelog == 53 54 = 2.1.13 = 55 * Fixed special characters in the link 56 * Admin design minor fixes 53 57 54 58 = 2.1.12 = -
zbplayer/trunk/zbPlayer.admin.php
r1269785 r1338499 2 2 /** 3 3 * zbPlayer Wordpress Plugin 4 * (c) 2013-201 5Vladimir Gilevich4 * (c) 2013-2016 Vladimir Gilevich 5 5 * Dual Licensed under the MIT and GPL licenses 6 6 * See license.txt, included with this package for more 7 7 * 8 8 * zbPlayer.admin.php 9 * Release 2.1.1 2 October 20159 * Release 2.1.13 January 2016 10 10 */ 11 11 -
zbplayer/trunk/zbPlayer.php
r1269801 r1338499 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 26 Version: 2.1.13 7 7 Author: Vladimir Gilevich 8 8 Author URI: http://gilevich.com/ … … 10 10 */ 11 11 12 define('ZBPLAYER_VERSION', "2.1.1 2");12 define('ZBPLAYER_VERSION', "2.1.13"); 13 13 define('ZBPLAYER_DEFAULT_WIDTH', "500"); 14 14 define('ZBPLAYER_DEFAULT_INITIALVOLUME', "60"); … … 172 172 $link = preg_split("/[\|]/", $matches[1]); 173 173 $link = $link[0]; 174 175 // Fix links special characters 176 $link = str_replace('&', '&', $link); 177 174 178 $name = str_replace('_', ' ', strip_tags($matches[0])); 179 180 // Fix titles special characters 175 181 $titles = str_replace( 176 182 array('–', '—', '’', '‘', '&', '&'),
Note: See TracChangeset
for help on using the changeset viewer.