Plugin Directory

Changeset 3258623


Ignore:
Timestamp:
03/19/2025 03:05:16 PM (12 months ago)
Author:
Mat Lipe
Message:

Update to version 7.0.3 from GitHub

Location:
go-live-update-urls
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • go-live-update-urls/tags/7.0.3/go-live-update-urls.php

    r3216196 r3258623  
    66 * Author: OnPoint Plugins
    77 * Author URI: https://onpointplugins.com
    8  * Version: 7.0.2
     8 * Version: 7.0.3
    99 * Text Domain: go-live-update-urls
    1010 * Domain Path: /languages/
     
    1616 */
    1717
    18 define( 'GO_LIVE_UPDATE_URLS_VERSION', '7.0.2' );
     18define( 'GO_LIVE_UPDATE_URLS_VERSION', '7.0.3' );
    1919define( 'GO_LIVE_UPDATE_URLS_REQUIRED_PRO_VERSION', '7.0.0' );
    2020define( 'GO_LIVE_UPDATE_URLS_URL', plugin_dir_url( __FILE__ ) );
  • go-live-update-urls/tags/7.0.3/readme.txt

    r3216196 r3258623  
    11=== Go Live Update Urls ===
    2 Contributors: Mat Lipe, onpointplugins
     2Contributors: onpointplugins, Mat Lipe
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40onpointplugins%2ecom&lc=US&item_name=Go%20Live%20Update%20Urls&no_note=0&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest
    44Tags: search and replace, database, urls, domain, update urls
    55Requires at least: 6.2.0
    6 Tested up to: 6.7.1
     6Tested up to: 6.7.2
    77Requires PHP: 7.4.0
    8 Stable tag: 7.0.2
     8Stable tag: 7.0.3
    99License: GPLv3 or later
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    1717Goes through entire site and replaces all instances of an old URL with a new one. Used most often when changing the domain of your site.
    1818
    19 ### Goals
    20 
    21 * Take the guesswork out of changing a domain.
    22 * Provide a super simple process for updating URLs.
    23 * Accurately update all instances of a URL on any site.
     19**Developed and supported by <a href="https://onpointplugins.com/go-live-update-urls/" target="_blank">OnPoint Plugins</a>.**
     20
     21### Purpose
     22
     231. Provides a super simple process for changing a domain or URL.
     242. Accurately updates all instances of a domain or URL on any site.
    2425
    2526### Features
     
    175176== Changelog ==
    176177
     178= 7.0.3 =
     179* Added original plugin author to the readme.
     180* Upgraded PHPStan to version 2.
     181* Updated nanoid to latest version to resolve dependency vulnerability.
     182* Tested to WordPress 6.7.2.
     183
    177184= 7.0.2 =
    178185* Adjusted memory limit during counting to assure all tables are counted.
  • go-live-update-urls/tags/7.0.3/src/Admin.php

    r3159918 r3258623  
    6262        }
    6363
    64         $tables = \array_filter( \array_map( 'go_live_update_urls_sanitize_field', (array) $_POST[ static::TABLE_INPUT_NAME ] ) );
     64        $tables = \array_filter( \array_map( 'go_live_update_urls_sanitize_field', (array) $_POST[ static::TABLE_INPUT_NAME ] ), fn( $value ) => '' !== $value );
    6565
    6666        do_action( 'go-live-update-urls/admin-page/before-update', $old_url, $new_url, $tables );
     
    127127     */
    128128    public function get_admin_capability(): string {
    129         return apply_filters( 'go-live-update-urls/admin/admin-capability', self::CAPABILITY, $this );
     129        return (string) apply_filters( 'go-live-update-urls/admin/admin-capability', self::CAPABILITY, $this );
    130130    }
    131131
  • go-live-update-urls/trunk/go-live-update-urls.php

    r3216196 r3258623  
    66 * Author: OnPoint Plugins
    77 * Author URI: https://onpointplugins.com
    8  * Version: 7.0.2
     8 * Version: 7.0.3
    99 * Text Domain: go-live-update-urls
    1010 * Domain Path: /languages/
     
    1616 */
    1717
    18 define( 'GO_LIVE_UPDATE_URLS_VERSION', '7.0.2' );
     18define( 'GO_LIVE_UPDATE_URLS_VERSION', '7.0.3' );
    1919define( 'GO_LIVE_UPDATE_URLS_REQUIRED_PRO_VERSION', '7.0.0' );
    2020define( 'GO_LIVE_UPDATE_URLS_URL', plugin_dir_url( __FILE__ ) );
  • go-live-update-urls/trunk/readme.txt

    r3216196 r3258623  
    11=== Go Live Update Urls ===
    2 Contributors: Mat Lipe, onpointplugins
     2Contributors: onpointplugins, Mat Lipe
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40onpointplugins%2ecom&lc=US&item_name=Go%20Live%20Update%20Urls&no_note=0&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest
    44Tags: search and replace, database, urls, domain, update urls
    55Requires at least: 6.2.0
    6 Tested up to: 6.7.1
     6Tested up to: 6.7.2
    77Requires PHP: 7.4.0
    8 Stable tag: 7.0.2
     8Stable tag: 7.0.3
    99License: GPLv3 or later
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    1717Goes through entire site and replaces all instances of an old URL with a new one. Used most often when changing the domain of your site.
    1818
    19 ### Goals
    20 
    21 * Take the guesswork out of changing a domain.
    22 * Provide a super simple process for updating URLs.
    23 * Accurately update all instances of a URL on any site.
     19**Developed and supported by <a href="https://onpointplugins.com/go-live-update-urls/" target="_blank">OnPoint Plugins</a>.**
     20
     21### Purpose
     22
     231. Provides a super simple process for changing a domain or URL.
     242. Accurately updates all instances of a domain or URL on any site.
    2425
    2526### Features
     
    175176== Changelog ==
    176177
     178= 7.0.3 =
     179* Added original plugin author to the readme.
     180* Upgraded PHPStan to version 2.
     181* Updated nanoid to latest version to resolve dependency vulnerability.
     182* Tested to WordPress 6.7.2.
     183
    177184= 7.0.2 =
    178185* Adjusted memory limit during counting to assure all tables are counted.
  • go-live-update-urls/trunk/src/Admin.php

    r3159918 r3258623  
    6262        }
    6363
    64         $tables = \array_filter( \array_map( 'go_live_update_urls_sanitize_field', (array) $_POST[ static::TABLE_INPUT_NAME ] ) );
     64        $tables = \array_filter( \array_map( 'go_live_update_urls_sanitize_field', (array) $_POST[ static::TABLE_INPUT_NAME ] ), fn( $value ) => '' !== $value );
    6565
    6666        do_action( 'go-live-update-urls/admin-page/before-update', $old_url, $new_url, $tables );
     
    127127     */
    128128    public function get_admin_capability(): string {
    129         return apply_filters( 'go-live-update-urls/admin/admin-capability', self::CAPABILITY, $this );
     129        return (string) apply_filters( 'go-live-update-urls/admin/admin-capability', self::CAPABILITY, $this );
    130130    }
    131131
Note: See TracChangeset for help on using the changeset viewer.