Changeset 877306
- Timestamp:
- 03/18/2014 06:04:27 PM (12 years ago)
- Location:
- video-thumbnails
- Files:
-
- 2 edited
- 4 copied
-
tags/2.7.1 (copied) (copied from video-thumbnails/trunk)
-
tags/2.7.1/languages (copied) (copied from video-thumbnails/trunk/languages)
-
tags/2.7.1/readme.txt (copied) (copied from video-thumbnails/trunk/readme.txt) (2 diffs)
-
tags/2.7.1/video-thumbnails.php (copied) (copied from video-thumbnails/trunk/video-thumbnails.php) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/video-thumbnails.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
video-thumbnails/tags/2.7.1/readme.txt
r873686 r877306 5 5 Requires at least: 3.2 6 6 Tested up to: 3.8.1 7 Stable tag: 2.7 7 Stable tag: 2.7.1 8 8 9 9 Video Thumbnails simplifies the process of automatically displaying video thumbnails in your WordPress template. … … 118 118 119 119 == Changelog == 120 121 = 2.7.1 = 122 * Fixed load_plugin_textdomain() path 120 123 121 124 = 2.7 = -
video-thumbnails/tags/2.7.1/video-thumbnails.php
r873686 r877306 6 6 Author: Sutherland Boswell 7 7 Author URI: http://sutherlandboswell.com 8 Version: 2.7 8 Version: 2.7.1 9 9 License: GPL2 10 10 Text Domain: video-thumbnails … … 31 31 define( 'VIDEO_THUMBNAILS_PATH', dirname(__FILE__) ); 32 32 define( 'VIDEO_THUMBNAILS_FIELD', '_video_thumbnail' ); 33 define( 'VIDEO_THUMBNAILS_VERSION', '2.7 ' );33 define( 'VIDEO_THUMBNAILS_VERSION', '2.7.1' ); 34 34 35 35 // Providers … … 94 94 */ 95 95 function plugin_textdomain() { 96 load_plugin_textdomain( 'video-thumbnails', false, VIDEO_THUMBNAILS_PATH. '/languages/' );96 load_plugin_textdomain( 'video-thumbnails', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' ); 97 97 } 98 98 -
video-thumbnails/trunk/readme.txt
r873686 r877306 5 5 Requires at least: 3.2 6 6 Tested up to: 3.8.1 7 Stable tag: 2.7 7 Stable tag: 2.7.1 8 8 9 9 Video Thumbnails simplifies the process of automatically displaying video thumbnails in your WordPress template. … … 118 118 119 119 == Changelog == 120 121 = 2.7.1 = 122 * Fixed load_plugin_textdomain() path 120 123 121 124 = 2.7 = -
video-thumbnails/trunk/video-thumbnails.php
r873686 r877306 6 6 Author: Sutherland Boswell 7 7 Author URI: http://sutherlandboswell.com 8 Version: 2.7 8 Version: 2.7.1 9 9 License: GPL2 10 10 Text Domain: video-thumbnails … … 31 31 define( 'VIDEO_THUMBNAILS_PATH', dirname(__FILE__) ); 32 32 define( 'VIDEO_THUMBNAILS_FIELD', '_video_thumbnail' ); 33 define( 'VIDEO_THUMBNAILS_VERSION', '2.7 ' );33 define( 'VIDEO_THUMBNAILS_VERSION', '2.7.1' ); 34 34 35 35 // Providers … … 94 94 */ 95 95 function plugin_textdomain() { 96 load_plugin_textdomain( 'video-thumbnails', false, VIDEO_THUMBNAILS_PATH. '/languages/' );96 load_plugin_textdomain( 'video-thumbnails', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' ); 97 97 } 98 98
Note: See TracChangeset
for help on using the changeset viewer.