Plugin Directory

Changeset 2770821


Ignore:
Timestamp:
08/16/2022 02:20:33 AM (4 years ago)
Author:
mgibbs189
Message:

Tagged 1.3.2

Location:
log-http-requests/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • log-http-requests/trunk/includes/class-query.php

    r2553011 r2770821  
    6060            $row['date_raw'] = $row['date_added'];
    6161            $row['date_added'] = LHR()->time_since( $row['date_added'] );
     62            $row['url'] = esc_url( $row['url'] );
    6263            $output[] = $row;
    6364        }
  • log-http-requests/trunk/includes/class-upgrade.php

    r1698896 r2770821  
    3333            date_added DATETIME,
    3434            PRIMARY KEY (id)
    35         ) DEFAULT CHARSET=utf8";
    36         dbDelta( $sql );
     35        ) DEFAULT CHARSET=utf8mb4";
     36        $wpdb->query( $sql );
    3737    }
    3838
  • log-http-requests/trunk/log-http-requests.php

    r2599605 r2770821  
    33Plugin Name: Log HTTP Requests
    44Description: Log all those pesky WP HTTP requests
    5 Version: 1.3.1
     5Version: 1.3.2
    66Author: FacetWP, LLC
    77Author URI: https://facetwp.com/
     
    3535
    3636        // setup variables
    37         define( 'LHR_VERSION', '1.3.1' );
     37        define( 'LHR_VERSION', '1.3.2' );
    3838        define( 'LHR_DIR', dirname( __FILE__ ) );
    3939        define( 'LHR_URL', plugins_url( '', __FILE__ ) );
  • log-http-requests/trunk/readme.txt

    r2599605 r2770821  
    22Contributors: mgibbs189
    33Tags: log, wp_http, requests, update checks, api
    4 Requires at least: 4.9
    5 Tested up to: 5.8.1
     4Requires at least: 5.0
     5Tested up to: 6.0.1
    66Stable tag: trunk
    77License: GPLv2
     
    4949== Changelog ==
    5050
     51= 1.3.2 =
     52* Escaped URL field to prevent possible XSS (props Bishop Fox)
     53
    5154= 1.3.1 =
    5255* Ensured compatibility with WP 5.8
Note: See TracChangeset for help on using the changeset viewer.