Changeset 1645168
- Timestamp:
- 04/25/2017 06:26:11 PM (9 years ago)
- Location:
- http-https-remover
- Files:
-
- 4 edited
- 3 copied
-
tags/1.5.1 (copied) (copied from http-https-remover/trunk)
-
tags/1.5.1/http-https-remover.php (copied) (copied from http-https-remover/trunk/http-https-remover.php) (2 diffs)
-
tags/1.5.1/index.php (modified) (1 diff)
-
tags/1.5.1/readme.txt (copied) (copied from http-https-remover/trunk/readme.txt) (2 diffs)
-
trunk/http-https-remover.php (modified) (2 diffs)
-
trunk/index.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
http-https-remover/tags/1.5.1/http-https-remover.php
r1645125 r1645168 4 4 * Plugin URI: https://de.wordpress.org/plugins/http-https-remover/ 5 5 * 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 7 7 * Author: CONDACORE 8 8 * Author URI: https://condacore.com/ … … 74 74 $buffer = str_replace('"url" : "//', '"url" : "https://', $buffer); 75 75 $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.google apis.com', $buffer);76 $buffer = preg_replace(array('|https://(.*?).google.com|','|https://(.*?).google.com|'), '//$1.google.com', $buffer); 77 77 $buffer = preg_replace("|http://(.+).gravatar.com|", "'https://$1.gravatar.com", $buffer); 78 78 $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 11 11 # Plugin: HTTP / HTTPS Remover 12 12 # Created by: Marius Bolik 13 # Copyright: 201 6© CONDACORE13 # Copyright: 2017 © CONDACORE 14 14 # Web: https://condacore.com -
http-https-remover/tags/1.5.1/readme.txt
r1645125 r1645168 5 5 Requires at least: 1.2.0 6 6 Tested up to: 4.7.4 7 Stable tag: 1.5 7 Stable tag: 1.5.1 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 73 73 == Changelog == 74 74 = 1.5 (04/25/17) = 75 * Fixed a reCAPTCHA issue 76 = 1.5 (04/25/17) = 75 77 * Now it removes http and https from source code again 76 78 * Fixed broken links in social sharing plugins -
http-https-remover/trunk/http-https-remover.php
r1645125 r1645168 4 4 * Plugin URI: https://de.wordpress.org/plugins/http-https-remover/ 5 5 * 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 7 7 * Author: CONDACORE 8 8 * Author URI: https://condacore.com/ … … 74 74 $buffer = str_replace('"url" : "//', '"url" : "https://', $buffer); 75 75 $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.google apis.com', $buffer);76 $buffer = preg_replace(array('|https://(.*?).google.com|','|https://(.*?).google.com|'), '//$1.google.com', $buffer); 77 77 $buffer = preg_replace("|http://(.+).gravatar.com|", "'https://$1.gravatar.com", $buffer); 78 78 $buffer = preg_replace(array("|'http://(.*?).w.org|","|'https://(.*?).w.org|"), "'//$1.w.org", $buffer); -
http-https-remover/trunk/index.php
r1521790 r1645168 11 11 # Plugin: HTTP / HTTPS Remover 12 12 # Created by: Marius Bolik 13 # Copyright: 201 6© CONDACORE13 # Copyright: 2017 © CONDACORE 14 14 # Web: https://condacore.com -
http-https-remover/trunk/readme.txt
r1645125 r1645168 5 5 Requires at least: 1.2.0 6 6 Tested up to: 4.7.4 7 Stable tag: 1.5 7 Stable tag: 1.5.1 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 73 73 == Changelog == 74 74 = 1.5 (04/25/17) = 75 * Fixed a reCAPTCHA issue 76 = 1.5 (04/25/17) = 75 77 * Now it removes http and https from source code again 76 78 * Fixed broken links in social sharing plugins
Note: See TracChangeset
for help on using the changeset viewer.