Plugin Directory

Changeset 1680611


Ignore:
Timestamp:
06/18/2017 01:32:08 PM (9 years ago)
Author:
sckmkny
Message:

fix bug with null version

Location:
futusign/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • futusign/trunk/admin/screen/package.json

    r1680605 r1680611  
    11{
    22  "name": "screen",
    3   "version": "2.4.0",
     3  "version": "2.4.1",
    44  "description": "",
    55  "main": "./dist/index.html",
  • futusign/trunk/futusign.php

    r1680605 r1680611  
    1111 * Plugin URI:       https://github.com/larkintuckerllc/futusign
    1212 * Description:      Manage and display digital signage content
    13  * Version:          2.4.0
     13 * Version:          2.4.1
    1414 * Author:           John Tucker
    1515 * Author URI:       https://github.com/larkintuckerllc
  • futusign/trunk/includes/class-futusign.php

    r1680605 r1680611  
    9393    public function __construct() {
    9494        $this->plugin_name = 'futusign';
    95         $this->version = '2.4.0';
     95        $this->version = '2.4.1';
    9696        $this->load_dependencies();
    9797        $this->set_locale();
  • futusign/trunk/public/partials/futusign-endpoint.php

    r1680605 r1680611  
    506506    // VERSION
    507507    $options = get_option( 'futusign_option_name' );
    508     $version = array_key_exists( 'version', $options ) ? $options['version'] : '';
     508    $version = $options !== false && array_key_exists( 'version', $options ) ? $options['version'] : '';
    509509  // OUTPUT
    510510    header( 'Content-Type: application/json' );
  • futusign/trunk/readme.txt

    r1680605 r1680611  
    44Requires at least: 4.3
    55Tested up to: 4.7
    6 Stable tag: 2.4.0
     6Stable tag: 2.4.1
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl.html
     
    2222
    2323== Changelog ==
     24
     25= 2.4.1 =
     26
     27bug fix: allow null version
    2428
    2529= 2.4.0 =
Note: See TracChangeset for help on using the changeset viewer.