Changeset 3073295
- Timestamp:
- 04/18/2024 03:43:31 PM (2 years ago)
- Location:
- redirect-list
- Files:
-
- 6 added
- 2 edited
-
tags/1.9 (added)
-
tags/1.9/readme.txt (added)
-
tags/1.9/redirect-list-sr_RS.mo (added)
-
tags/1.9/redirect-list-sr_RS.po (added)
-
tags/1.9/redirect-list.pot (added)
-
tags/1.9/redirectlist.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/redirectlist.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
redirect-list/trunk/readme.txt
r2733978 r3073295 4 4 Tags: 301, 302, 307, forwarding, redirect, url redirect, http redirect, redirection 5 5 Requires at least: 3.0.1 6 Tested up to: 6. 06 Tested up to: 6.5.2 7 7 Stable tag: 1.8 8 8 License: GPL2 … … 60 60 = 1.8 = 61 61 * 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 4 4 Plugin URI: https://membershipworks.com/redirect-list-wordpress/ 5 5 Description: Redirect List 6 Version: 1. 86 Version: 1.9 7 7 Author: MembershipWorks 8 8 Author URI: https://membershipworks.com … … 103 103 $out=array(); 104 104 $url=get_site_url(); 105 $in=json_decode($in,true); 105 if (is_string($in)) 106 $in=json_decode($in,true); 106 107 if (is_array($in)) for ($i=0;$i<count($in);$i++) if (is_array($in[$i])&&$in[$i][0]) { 107 108 $tmp=strpos($in[$i][0],substr(strstr($url,'//'),2));
Note: See TracChangeset
for help on using the changeset viewer.