Plugin Directory

Changeset 2049289


Ignore:
Timestamp:
03/12/2019 07:16:59 PM (7 years ago)
Author:
ClearcodeHQ
Message:

Version 1.0.1

Location:
cc-redirects
Files:
65 added
10 edited

Legend:

Unmodified
Added
Removed
  • cc-redirects/trunk/README.txt

    r1849203 r2049289  
    33Tags: 301, redirect, redirects, seo, url, request, destination, 302, csv, clearcode, piotrpress
    44Requires PHP: 7.0
    5 Requires at least: 4.9.4
     5Requires at least: 5.1
    66Tested up to: 4.9.4
    77Stable tag: trunk
     
    5757== Changelog ==
    5858
     59= 1.0.1 =
     60*Release date: 12.03.2019*
     61
     62* Added 'code' param to wp_redirect() function.
     63
    5964= 1.0.0 =
    6065*Release date: 27.03.2018*
  • cc-redirects/trunk/includes/Redirects.php

    r1849203 r2049289  
    22
    33/*
    4     Copyright (C) 2018 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2019 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
     
    4141            if ( '' !== $to && trim( $to, '/' ) !== trim( $from, '/' ) ) {
    4242                if ( 0 === strpos( $to, '/' ) ) wp_safe_redirect( home_url() . $to, $code );
    43                 else wp_redirect( $to );
     43                else wp_redirect( $to, $code );
    4444                exit;
    4545            } return false;
  • cc-redirects/trunk/includes/Settings.php

    r1849203 r2049289  
    22
    33/*
    4     Copyright (C) 2018 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2019 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-redirects/trunk/includes/Table.php

    r1849203 r2049289  
    22
    33/*
    4     Copyright (C) 2018 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2019 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-redirects/trunk/plugin.php

    r1849203 r2049289  
    66 * @package     CC-Redirects
    77 * @author      PiotrPress
    8  * @copyright   2018 Clearcode
     8 * @copyright   2019 Clearcode
    99 * @license     GPL-3.0+
    1010 *
     
    1313 * Plugin URI:  https://wordpress.org/plugins/cc-redirects
    1414 * Description: This plugin allows you to create simple redirect requests to another page on your site or elsewhere on the web.
    15  * Version:     1.0.0
     15 * Version:     1.0.1
    1616 * Author:      Clearcode
    1717 * Author URI:  https://clearcode.cc
     
    2121 * License URI: http://www.gnu.org/licenses/gpl-3.0.txt
    2222
    23    Copyright (C) 2018 by Clearcode <https://clearcode.cc>
     23   Copyright (C) 2019 by Clearcode <https://clearcode.cc>
    2424   and associates (see AUTHORS.txt file).
    2525
  • cc-redirects/trunk/uninstall.php

    r1849203 r2049289  
    22
    33/*
    4     Copyright (C) 2018 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2019 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-redirects/trunk/vendor/clearcode/wordpress-framework/src/v3/Autoloader.php

    r1849203 r2049289  
    22
    33/*
    4     Copyright (C) 2018 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2019 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-redirects/trunk/vendor/clearcode/wordpress-framework/src/v3/Filterer.php

    r1849203 r2049289  
    22
    33/*
    4     Copyright (C) 2018 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2019 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-redirects/trunk/vendor/clearcode/wordpress-framework/src/v3/Plugin.php

    r1849203 r2049289  
    22
    33/*
    4     Copyright (C) 2018 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2019 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-redirects/trunk/vendor/clearcode/wordpress-framework/src/v3/Singleton.php

    r1849203 r2049289  
    22
    33/*
    4     Copyright (C) 2018 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2019 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
Note: See TracChangeset for help on using the changeset viewer.