Plugin Directory

Changeset 2248053


Ignore:
Timestamp:
02/21/2020 09:58:21 AM (6 years ago)
Author:
baqend
Message:

Release 1.17.1

Location:
baqend
Files:
488 added
5 edited

Legend:

Unmodified
Added
Removed
  • baqend/trunk/README.txt

    r2248032 r2248053  
    44Requires at least: 4.6.0
    55Tested up to: 5.2.2
    6 Stable tag: 1.17.0
     6Stable tag: 1.17.1
    77Requires PHP: 5.5.9
    88License: GPLv2 or later
     
    105105
    106106== Changelog ==
     107
     108= v1.17.1 (2020-2-21) =
     109
     110
     111Bug Fixes
     112
     113* Fix snippet src
    107114
    108115= v1.17.0 (2020-2-21) =
  • baqend/trunk/baqend.php

    r2248032 r2248053  
    44 * Plugin URI:        https://www.baqend.com/guide/topics/wordpress/
    55 * Description:       Easily use Baqend Cloud for your WordPress site and make it lightning-fast.
    6  * Version:           1.17.0
     6 * Version:           1.17.1
    77 * Author:            Baqend GmbH
    88 * Author URI:        https://www.baqend.com/
  • baqend/trunk/includes/Controller/FrontendController.php

    r2248032 r2248053  
    3737        $install_url = $this->plugin->install_script_url();
    3838        echo <<<HTML
    39 <script async type="application/javascript" src=$install_url></script>
     39<script async type="application/javascript" src="$install_url"></script>
    4040HTML;
    4141
  • baqend/trunk/includes/Info.php

    r2248032 r2248053  
    2020     * @var string
    2121     */
    22     const VERSION = '1.17.0';
     22    const VERSION = '1.17.1';
    2323
    2424    /**
  • baqend/trunk/includes/Plugin.php

    r2248032 r2248053  
    576576        $site_url = site_url( '/' );
    577577        preg_match( '#https?://(?:www\.)?([\.A-Za-z0-9-]+)#', $site_url, $matches );
    578         [ , $domain ] = $matches;
     578        list( , $domain ) = $matches;
    579579        $hash = substr( md5( $site_url ), 0, 10 );
    580580
Note: See TracChangeset for help on using the changeset viewer.