Plugin Directory

Changeset 2482280


Ignore:
Timestamp:
02/26/2021 03:38:16 PM (5 years ago)
Author:
dsky
Message:

minor fix

Location:
site-search-360/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • site-search-360/trunk/class-sitesearch360-client.php

    r2340228 r2482280  
    336336
    337337    private function callApi($url, $method, $payload) {
     338        if ($this->token === NULL || strlen($this->token) === 0) {
     339            $failure = array();
     340            $failure['status'] = 'failure';
     341            return $failure;
     342        }
    338343        $headers = array(
    339344            'User-Agent' => 'Site Search 360 Wordpress Plugin/' . SITESEARCH360_VERSION,
  • site-search-360/trunk/class-sitesearch360-plugin.php

    r2476515 r2482280  
    664664                    }
    665665                    ?>
    666                     <!-- Site Search 360 WP v<?php $ss360_v = defined('SITESEARCH360_VERSION') ? SITESEARCH360_VERSION : '1.1.21'; echo $ss360_v; ?> -->
     666                    <!-- Site Search 360 WP v<?php $ss360_v = defined('SITESEARCH360_VERSION') ? SITESEARCH360_VERSION : '1.1.22'; echo $ss360_v; ?> -->
    667667                    <script type="text/javascript">
    668668                        var ss360Config = <?php echo json_encode($configuration); ?>;
  • site-search-360/trunk/class-sitesearch360-tracker.php

    r2476515 r2482280  
    8383        }
    8484
    85         $data['version'] = defined('SITESEARCH360_VERSION') ? SITESEARCH360_VERSION : '1.1.21';
     85        $data['version'] = defined('SITESEARCH360_VERSION') ? SITESEARCH360_VERSION : '1.1.22';
    8686
    8787        $args = array(
  • site-search-360/trunk/readme.txt

    r2476515 r2482280  
    66Requires at least: 4.0.0
    77Tested up to: 5.5
    8 Stable tag: 1.1.21
     8Stable tag: 1.1.22
    99Requires PHP: 5.2.4
    1010License: GPLv2
     
    7878
    7979== Changelog ==
     80= 1.1.22 =
     81* Minor fix.
     82
    8083= 1.1.21 =
    8184* Add option to disable the js plugin.
  • site-search-360/trunk/sitesearch360.php

    r2476515 r2482280  
    66Description: Site Search 360 enhances and improves your standard WordPress search with search suggests, autocompletion, semantic search, and a whole lot of customization. Also, you'll be amazed of how much faster you get relevant search results.
    77Author: SEMKNOX GmbH
    8 Version: 1.1.21
     8Version: 1.1.22
    99Author URI: https://sitesearch360.com
    1010Text Domain: site-search-360
     
    1212*/
    1313
    14 define( 'SITESEARCH360_VERSION', '1.1.21' );
     14define( 'SITESEARCH360_VERSION', '1.1.22' );
    1515
    1616require_once 'class-sitesearch360-widget.php';
Note: See TracChangeset for help on using the changeset viewer.