Changeset 970103
- Timestamp:
- 08/21/2014 09:13:05 PM (12 years ago)
- Location:
- wp-responsive-media/trunk
- Files:
-
- 3 edited
-
includes/lib/class-wp-responsive-media-admin-main.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wp-responsive-media.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-responsive-media/trunk/includes/lib/class-wp-responsive-media-admin-main.php
r970090 r970103 65 65 $image->parentNode->replaceChild( $picturefill, $image ); 66 66 } 67 $content = $dom->saveHTML(); 67 // Remove the doctype that is added 68 $content = preg_replace('~<(?:!DOCTYPE|/?(?:html|body))[^>]*>\s*~i', '', $dom->saveHTML()); 68 69 69 70 return $content; -
wp-responsive-media/trunk/readme.txt
r970090 r970103 5 5 Requires at least: 3.9 6 6 Tested up to: 3.9.1 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
wp-responsive-media/trunk/wp-responsive-media.php
r970090 r970103 2 2 /* 3 3 * Plugin Name: WP Responsive Media 4 * Version: 1.0. 34 * Version: 1.0.4 5 5 * Plugin URI: http://www.randyjensen.com/ 6 6 * Description: Seamless responsive media for WordPress … … 30 30 */ 31 31 function WP_Responsive_Media () { 32 $instance = WP_Responsive_Media::instance( __FILE__, '1.0. 3' );32 $instance = WP_Responsive_Media::instance( __FILE__, '1.0.4' ); 33 33 34 34 return $instance;
Note: See TracChangeset
for help on using the changeset viewer.