Plugin Directory

Changeset 2911428


Ignore:
Timestamp:
05/12/2023 03:31:59 AM (3 years ago)
Author:
diversesolutions
Message:

Updating to version 3.17.1

Location:
dsidxpress/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • dsidxpress/trunk/api-multirequest.php

    r2583880 r2911428  
    4343            $body='';
    4444            $criteria = $matches[0][$i];
    45                 if ( is_a( $responses[$i], 'Requests_Response' ) ) {
     45
     46            // WP 6.2 support: Requests/Response classes has been replaced into the another namespace in the core
     47            $response_class = class_exists('\WpOrg\Requests\Requests') ? 'WpOrg\Requests\Response' : 'Requests_Response';
     48
     49                if ( is_a( $responses[$i], $response_class ) ) {
    4650                        if ( (!empty($responses[$i]->status_code) && $responses[$i]->status_code === 200) ) {
    4751                            $body= dsSearchAgent_ApiRequest::ProcessResponseBody($responses[$i]->body,$criteria);
  • dsidxpress/trunk/dsidxpress.php

    r2864857 r2911428  
    77Author: Diverse Solutions
    88Author URI: http://www.diversesolutions.com/
    9 Version: 3.17.0
     9Version: 3.17.1
    1010*/
    1111
  • dsidxpress/trunk/readme.txt

    r2902024 r2911428  
    44Requires at least: 4.5.0
    55Tested up to: 6.0
    6 Stable tag: 3.17.0
     6Stable tag: 3.17.1
    77Requires PHP: 5.4.0
    88
     
    120120
    121121== Changelog ==
     122
     123= 3.17.1 =
     124* WordPress v6.2 compatibility fixes
    122125
    123126= 3.17.0 =
Note: See TracChangeset for help on using the changeset viewer.