Changeset 2770821
- Timestamp:
- 08/16/2022 02:20:33 AM (4 years ago)
- Location:
- log-http-requests/trunk
- Files:
-
- 4 edited
-
includes/class-query.php (modified) (1 diff)
-
includes/class-upgrade.php (modified) (1 diff)
-
log-http-requests.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
log-http-requests/trunk/includes/class-query.php
r2553011 r2770821 60 60 $row['date_raw'] = $row['date_added']; 61 61 $row['date_added'] = LHR()->time_since( $row['date_added'] ); 62 $row['url'] = esc_url( $row['url'] ); 62 63 $output[] = $row; 63 64 } -
log-http-requests/trunk/includes/class-upgrade.php
r1698896 r2770821 33 33 date_added DATETIME, 34 34 PRIMARY KEY (id) 35 ) DEFAULT CHARSET=utf8 ";36 dbDelta( $sql );35 ) DEFAULT CHARSET=utf8mb4"; 36 $wpdb->query( $sql ); 37 37 } 38 38 -
log-http-requests/trunk/log-http-requests.php
r2599605 r2770821 3 3 Plugin Name: Log HTTP Requests 4 4 Description: Log all those pesky WP HTTP requests 5 Version: 1.3. 15 Version: 1.3.2 6 6 Author: FacetWP, LLC 7 7 Author URI: https://facetwp.com/ … … 35 35 36 36 // setup variables 37 define( 'LHR_VERSION', '1.3. 1' );37 define( 'LHR_VERSION', '1.3.2' ); 38 38 define( 'LHR_DIR', dirname( __FILE__ ) ); 39 39 define( 'LHR_URL', plugins_url( '', __FILE__ ) ); -
log-http-requests/trunk/readme.txt
r2599605 r2770821 2 2 Contributors: mgibbs189 3 3 Tags: log, wp_http, requests, update checks, api 4 Requires at least: 4.95 Tested up to: 5.8.14 Requires at least: 5.0 5 Tested up to: 6.0.1 6 6 Stable tag: trunk 7 7 License: GPLv2 … … 49 49 == Changelog == 50 50 51 = 1.3.2 = 52 * Escaped URL field to prevent possible XSS (props Bishop Fox) 53 51 54 = 1.3.1 = 52 55 * Ensured compatibility with WP 5.8
Note: See TracChangeset
for help on using the changeset viewer.