WP htaccess Control - Version 3.3.4

Version Description

(28/01/2013) =

  • Fix: some servers would send http:// to https:// on admin settings page.
Download this release

Release Info

Developer antonioandra.de
Plugin Icon wp plugin WP htaccess Control
Version 3.3.4
Comparing to
See all releases

Code changes from version 3.3.3 to 3.3.4

readme.txt CHANGED
@@ -82,6 +82,10 @@ For WordPress versions prior to 3.4 use the plugin version 2.7.2.1.
82
 
83
  == Changelog ==
84
 
 
 
 
 
85
  = 3.3.3 (28/01/2013) =
86
 
87
  * Fix: PHP and WordPress deprecation warnings.
82
 
83
  == Changelog ==
84
 
85
+ = 3.3.4 (28/01/2013) =
86
+
87
+ * Fix: some servers would send http:// to https:// on admin settings page.
88
+
89
  = 3.3.3 (28/01/2013) =
90
 
91
  * Fix: PHP and WordPress deprecation warnings.
wp-htaccess-control-ui.php CHANGED
@@ -3,8 +3,10 @@ $debug=false;
3
 
4
  $plugin_path = WP_CONTENT_DIR.'/plugins/'.plugin_basename(dirname(__FILE__));
5
  $plugin_url = WP_CONTENT_URL.'/plugins/'.plugin_basename(dirname(__FILE__));
6
- $q=explode('&',$_SERVER['QUERY_STRING']);
7
- $purl='http'.((!empty($_SERVER['HTTPS'])) ? 's' : '').'://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'].'?'.$q[0];
 
 
8
  global $WPhtc, $echo;
9
  $WPhtc->page_action();
10
 
3
 
4
  $plugin_path = WP_CONTENT_DIR.'/plugins/'.plugin_basename(dirname(__FILE__));
5
  $plugin_url = WP_CONTENT_URL.'/plugins/'.plugin_basename(dirname(__FILE__));
6
+ //$q=explode('&',$_SERVER['QUERY_STRING']);
7
+ //$purl='http'.((!empty($_SERVER['HTTPS'])) ? 's' : '').'://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'].'?'.$q[0];
8
+ $q=explode("&", $_SERVER['REQUEST_URI']);
9
+ $purl=$q[0];
10
  global $WPhtc, $echo;
11
  $WPhtc->page_action();
12
 
wp-htaccess-control.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP htaccess Control
4
  Plugin URI: http://dardna.com/wp-htaccess-control
5
  Description: Interface to customize the permalinks (author, category, archives and pagination) and htaccess file generated by Wordpress.
6
- Version: 3.3.3
7
  Author: António Andrade
8
  Author URI: http://antonioandra.de
9
  */
3
  Plugin Name: WP htaccess Control
4
  Plugin URI: http://dardna.com/wp-htaccess-control
5
  Description: Interface to customize the permalinks (author, category, archives and pagination) and htaccess file generated by Wordpress.
6
+ Version: 3.3.4
7
  Author: António Andrade
8
  Author URI: http://antonioandra.de
9
  */