Plugin Directory

Changeset 2062148


Ignore:
Timestamp:
04/03/2019 09:00:25 AM (7 years ago)
Author:
pixelative
Message:
  • Fix: Resolved the Fastimage.php library path
Location:
amp-wp
Files:
376 added
4 edited

Legend:

Unmodified
Added
Removed
  • amp-wp/trunk/README.txt

    r2062068 r2062148  
    66Tested up to: 5.1.1
    77Requires PHP: 5.6
    8 Stable tag: 1.5.3
     8Stable tag: 1.5.4
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    173173== Changelog ==
    174174
     175= 1.5.4 - 2019-04-03 =
     176* Fix: Resolved the Fastimage.php library path
     177
    175178= 1.5.3 - 2019-04-03 =
    176179* Fix: Resolved missing template for notifications
     
    289292== Upgrade Notice ==
    290293
    291 = 1.5.3 =
    292 1.5.3 is an update to fix broken layout/blank screen issues in release 1.5.2.
     294= 1.5.4 =
     2951.5.4 is an update to fix missing file path of Fastimage.php library in release 1.5.3.
  • amp-wp/trunk/amp-wp.php

    r2062068 r2062148  
    1616 * Plugin URI:          https://wordpress.org/plugins/amp-wp
    1717 * Description:         Automagically add Google AMP functionality to your site. Tons of Premium Features for FREE. Enable/Disable Post Types, Categories, and Tags.
    18  * Version:             1.5.3
     18 * Version:             1.5.4
    1919 * Author:              Pixelative, Mohsin Rafique
    2020 * Author URI:          https://pixelative.co
     
    5454 * Rename this for your plugin and update it as you release new versions.
    5555 */
    56 define( 'AMP_WP_VERSION', '1.5.3' );
     56define( 'AMP_WP_VERSION', '1.5.4' );
    5757
    5858/**
  • amp-wp/trunk/includes/components/class-amp-wp-img-component.php

    r2062068 r2062148  
    299299    public function fetch_image_dimension($url) {
    300300        if( !class_exists('FastImage') ) {
    301             require AMP_WP_DIR_PATH . 'inlcudes/Fastimage.php';
     301            require AMP_WP_DIR_PATH . 'includes/Fastimage.php';
    302302        }
    303303        $fast_image = new FastImage($url);
  • amp-wp/trunk/public/partials/tez/shortcodes/gallery.php

    r2062068 r2062148  
    11<?php
     2
    23$atts = amp_wp_get_prop( 'Amp_WP_Carousel_Component' );
    34
Note: See TracChangeset for help on using the changeset viewer.