Plugin Directory

Changeset 1645168


Ignore:
Timestamp:
04/25/2017 06:26:11 PM (9 years ago)
Author:
condacore
Message:

Fixed a reCAPTCHA issue

Location:
http-https-remover
Files:
4 edited
3 copied

Legend:

Unmodified
Added
Removed
  • http-https-remover/tags/1.5.1/http-https-remover.php

    r1645125 r1645168  
    44 * Plugin URI: https://de.wordpress.org/plugins/http-https-remover/
    55 * Description: This Plugin cleans all the URLs in the source code while it removes the http:// and https:// and replaces it with //
    6  * Version: 1.5
     6 * Version: 1.5.1
    77 * Author: CONDACORE
    88 * Author URI: https://condacore.com/
     
    7474            $buffer = str_replace('"url" : "//', '"url" : "https://', $buffer);
    7575            $buffer = preg_replace(array('|https://(.*?).googleapis.com|','|https://(.*?).googleapis.com|'), '//$1.googleapis.com', $buffer);
    76             $buffer = preg_replace(array('|https://(.*?).google.com|','|https://(.*?).google.com|'), '//$1.googleapis.com', $buffer);
     76            $buffer = preg_replace(array('|https://(.*?).google.com|','|https://(.*?).google.com|'), '//$1.google.com', $buffer);
    7777            $buffer = preg_replace("|http://(.+).gravatar.com|", "'https://$1.gravatar.com", $buffer);
    7878            $buffer = preg_replace(array("|'http://(.*?).w.org|","|'https://(.*?).w.org|"), "'//$1.w.org", $buffer);
  • http-https-remover/tags/1.5.1/index.php

    r1521790 r1645168  
    1111#   Plugin:     HTTP / HTTPS Remover
    1212#   Created by: Marius Bolik   
    13 #   Copyright:  2016 © CONDACORE
     13#   Copyright:  2017 © CONDACORE
    1414#   Web:        https://condacore.com                                         
  • http-https-remover/tags/1.5.1/readme.txt

    r1645125 r1645168  
    55Requires at least: 1.2.0
    66Tested up to: 4.7.4
    7 Stable tag: 1.5
     7Stable tag: 1.5.1
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    7373== Changelog ==
    7474= 1.5 (04/25/17) =
     75* Fixed a reCAPTCHA issue
     76= 1.5 (04/25/17) =
    7577* Now it removes http and https from source code again
    7678* Fixed broken links in social sharing plugins
  • http-https-remover/trunk/http-https-remover.php

    r1645125 r1645168  
    44 * Plugin URI: https://de.wordpress.org/plugins/http-https-remover/
    55 * Description: This Plugin cleans all the URLs in the source code while it removes the http:// and https:// and replaces it with //
    6  * Version: 1.5
     6 * Version: 1.5.1
    77 * Author: CONDACORE
    88 * Author URI: https://condacore.com/
     
    7474            $buffer = str_replace('"url" : "//', '"url" : "https://', $buffer);
    7575            $buffer = preg_replace(array('|https://(.*?).googleapis.com|','|https://(.*?).googleapis.com|'), '//$1.googleapis.com', $buffer);
    76             $buffer = preg_replace(array('|https://(.*?).google.com|','|https://(.*?).google.com|'), '//$1.googleapis.com', $buffer);
     76            $buffer = preg_replace(array('|https://(.*?).google.com|','|https://(.*?).google.com|'), '//$1.google.com', $buffer);
    7777            $buffer = preg_replace("|http://(.+).gravatar.com|", "'https://$1.gravatar.com", $buffer);
    7878            $buffer = preg_replace(array("|'http://(.*?).w.org|","|'https://(.*?).w.org|"), "'//$1.w.org", $buffer);
  • http-https-remover/trunk/index.php

    r1521790 r1645168  
    1111#   Plugin:     HTTP / HTTPS Remover
    1212#   Created by: Marius Bolik   
    13 #   Copyright:  2016 © CONDACORE
     13#   Copyright:  2017 © CONDACORE
    1414#   Web:        https://condacore.com                                         
  • http-https-remover/trunk/readme.txt

    r1645125 r1645168  
    55Requires at least: 1.2.0
    66Tested up to: 4.7.4
    7 Stable tag: 1.5
     7Stable tag: 1.5.1
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    7373== Changelog ==
    7474= 1.5 (04/25/17) =
     75* Fixed a reCAPTCHA issue
     76= 1.5 (04/25/17) =
    7577* Now it removes http and https from source code again
    7678* Fixed broken links in social sharing plugins
Note: See TracChangeset for help on using the changeset viewer.