Plugin Directory

Changeset 3073295


Ignore:
Timestamp:
04/18/2024 03:43:31 PM (2 years ago)
Author:
sourcefound
Message:

Version 1.9

Location:
redirect-list
Files:
6 added
2 edited

Legend:

Unmodified
Added
Removed
  • redirect-list/trunk/readme.txt

    r2733978 r3073295  
    44Tags: 301, 302, 307, forwarding, redirect, url redirect, http redirect, redirection
    55Requires at least: 3.0.1
    6 Tested up to: 6.0
     6Tested up to: 6.5.2
    77Stable tag: 1.8
    88License: GPL2
     
    6060= 1.8 =
    6161* Corrects URL matching so exact match required
     62
     63= 1.9 =
     64* Fixes issue with WP automatically decoding JSON settings
  • redirect-list/trunk/redirectlist.php

    r1717159 r3073295  
    44Plugin URI: https://membershipworks.com/redirect-list-wordpress/
    55Description: Redirect List
    6 Version: 1.8
     6Version: 1.9
    77Author: MembershipWorks
    88Author URI: https://membershipworks.com
     
    103103    $out=array();
    104104    $url=get_site_url();
    105     $in=json_decode($in,true);
     105    if (is_string($in))
     106        $in=json_decode($in,true);
    106107    if (is_array($in)) for ($i=0;$i<count($in);$i++) if (is_array($in[$i])&&$in[$i][0]) {
    107108        $tmp=strpos($in[$i][0],substr(strstr($url,'//'),2));
Note: See TracChangeset for help on using the changeset viewer.