Plugin Directory

Changeset 970103


Ignore:
Timestamp:
08/21/2014 09:13:05 PM (12 years ago)
Author:
randyjensen
Message:

Preparing for 1.0.4 release

Location:
wp-responsive-media/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-responsive-media/trunk/includes/lib/class-wp-responsive-media-admin-main.php

    r970090 r970103  
    6565        $image->parentNode->replaceChild( $picturefill, $image );
    6666    }
    67     $content = $dom->saveHTML();
     67    // Remove the doctype that is added
     68    $content = preg_replace('~<(?:!DOCTYPE|/?(?:html|body))[^>]*>\s*~i', '', $dom->saveHTML());
    6869
    6970    return $content;
  • wp-responsive-media/trunk/readme.txt

    r970090 r970103  
    55Requires at least: 3.9
    66Tested up to: 3.9.1
    7 Stable tag: 1.0.3
     7Stable tag: 1.0.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • wp-responsive-media/trunk/wp-responsive-media.php

    r970090 r970103  
    22/*
    33 * Plugin Name: WP Responsive Media
    4  * Version: 1.0.3
     4 * Version: 1.0.4
    55 * Plugin URI: http://www.randyjensen.com/
    66 * Description: Seamless responsive media for WordPress
     
    3030 */
    3131function WP_Responsive_Media () {
    32     $instance = WP_Responsive_Media::instance( __FILE__, '1.0.3' );
     32    $instance = WP_Responsive_Media::instance( __FILE__, '1.0.4' );
    3333
    3434    return $instance;
Note: See TracChangeset for help on using the changeset viewer.