Changeset 1532291
- Timestamp:
- 11/11/2016 01:08:50 PM (9 years ago)
- Location:
- h5p/trunk
- Files:
-
- 3 edited
-
h5p.php (modified) (1 diff)
-
public/class-h5p-plugin.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
h5p/trunk/h5p.php
r1530244 r1532291 16 16 * Plugin URI: http://h5p.org/wordpress 17 17 * Description: Allows you to upload, create, share and use rich interactive content on your WordPress site. 18 * Version: 1.7. 518 * Version: 1.7.6 19 19 * Author: Joubel 20 20 * Author URI: http://joubel.com -
h5p/trunk/public/class-h5p-plugin.php
r1530244 r1532291 25 25 * @var string 26 26 */ 27 const VERSION = '1.7. 5';27 const VERSION = '1.7.6'; 28 28 29 29 /** … … 613 613 614 614 if (!empty($language)) { 615 return str_replace('_', '-', strtolower($language)); 615 $languageParts = explode('_', $language); 616 return $languageParts[0]; 616 617 } 617 618 -
h5p/trunk/readme.txt
r1530244 r1532291 5 5 Requires at least: 3.8.1 6 6 Tested up to: 4.6 7 Stable tag: 1.7. 57 Stable tag: 1.7.6 8 8 License: MIT 9 9 License URI: http://opensource.org/licenses/MIT … … 259 259 = 1.7.5 = 260 260 Fixed backwards-compatible change in editor 261 262 = 1.7.6 = 263 Fixed loading of language files for content types
Note: See TracChangeset
for help on using the changeset viewer.