Changeset 1879506
- Timestamp:
- 05/22/2018 09:40:17 PM (8 years ago)
- Location:
- mwuse/trunk
- Files:
-
- 3 edited
-
extend/hero-files.php (modified) (1 diff)
-
mwuse.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mwuse/trunk/extend/hero-files.php
r1782565 r1879506 31 31 { 32 32 $file = $wp_filesystem->get_contents( $file_path ); 33 header('Content-Type: '.mime_content_type( $file_path )); 33 $finfo = finfo_open(FILEINFO_MIME_TYPE); 34 $mime_content_type = finfo_file($finfo, $file_path); 35 finfo_close($finfo); 36 37 header('Content-Type: '. $mime_content_type); 34 38 echo $file; 35 39 exit(); -
mwuse/trunk/mwuse.php
r1873208 r1879506 7 7 Text Domain: mwuse 8 8 Domain Path: /languages 9 Version: 1.2.1700 59 Version: 1.2.17006 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 29 29 define("TTR_MW_PLUGIN_DIR", plugin_dir_path( __FILE__ ) ); 30 30 define("TTR_MW_PLUGIN_URL", plugin_dir_url( __FILE__ ) ); 31 $mtw_version = '1.2.1700 5';31 $mtw_version = '1.2.17006'; 32 32 33 33 -
mwuse/trunk/readme.txt
r1873210 r1879506 6 6 Donate link: https://www.paypal.me/musetowordpress 7 7 Requires at least: 4.6 8 Tested up to: 4.9. 19 Stable tag: 1.2.1700 58 Tested up to: 4.9.5 9 Stable tag: 1.2.17006 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 44 44 == Changelog == 45 45 1.2.18 (progress) 46 - Woocommerce :slide scripts not find46 - Woocommerce - slide scripts not find 47 47 - Issue with Author info 48 48 - Include mtw outsourcing scripts in mwuse 49 - hero-files.php mime_content_type deprecated "php 7.0" replaced by finfo 49 50 50 51 1.2.17
Note: See TracChangeset
for help on using the changeset viewer.