Version Description
(21/4/2014) =
- Fix: more fixes.
Download this release
Release Info
Developer | antonioandra.de |
Plugin | WP htaccess Control |
Version | 3.4.5 |
Comparing to | |
See all releases |
Code changes from version 3.4.4 to 3.4.5
- readme.txt +5 -1
- wp-htaccess-control.php +3 -4
readme.txt
CHANGED
@@ -7,7 +7,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=anton
|
|
7 |
Tags: permalinks, permalink, author, htaccess, rewrite, redirect, admin, maintenance, pagination, category, category base, archive, archives
|
8 |
Requires at least: 3.4
|
9 |
Tested up to: 3.9
|
10 |
-
Stable tag: 3.4.
|
11 |
|
12 |
Interface to customize the permalinks (author, category, archives and pagination) and htaccess file generated by WordPress.
|
13 |
|
@@ -93,6 +93,10 @@ For WordPress versions prior to 3.4 use the plugin version 2.7.2.1.
|
|
93 |
|
94 |
== Changelog ==
|
95 |
|
|
|
|
|
|
|
|
|
96 |
= 3.4.4 (21/4/2014) =
|
97 |
|
98 |
* Fix: taxonomy base removal admin interface would agglomerate settings;
|
7 |
Tags: permalinks, permalink, author, htaccess, rewrite, redirect, admin, maintenance, pagination, category, category base, archive, archives
|
8 |
Requires at least: 3.4
|
9 |
Tested up to: 3.9
|
10 |
+
Stable tag: 3.4.5
|
11 |
|
12 |
Interface to customize the permalinks (author, category, archives and pagination) and htaccess file generated by WordPress.
|
13 |
|
93 |
|
94 |
== Changelog ==
|
95 |
|
96 |
+
= 3.4.5 (21/4/2014) =
|
97 |
+
|
98 |
+
* Fix: more fixes.
|
99 |
+
|
100 |
= 3.4.4 (21/4/2014) =
|
101 |
|
102 |
* Fix: taxonomy base removal admin interface would agglomerate settings;
|
wp-htaccess-control.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP htaccess Control
|
4 |
Plugin URI: http://antonioandra.de
|
5 |
Description: Interface to customize the permalinks (author, category, archives and pagination) and htaccess file generated by WordPress.
|
6 |
-
Version: 3.4.
|
7 |
Author: António Andrade
|
8 |
Author URI: http://antonioandra.de
|
9 |
*/
|
@@ -75,13 +75,12 @@ if (!class_exists("WPhtc")) {
|
|
75 |
/*
|
76 |
* @param $key
|
77 |
*/
|
78 |
-
function get_data($key, $key_inner
|
79 |
{
|
80 |
-
|
81 |
if (isset($this->data[$key])) {
|
82 |
if ($key_inner != "" && isset($this->data[$key][$key_inner])) {
|
83 |
return $this->data[$key][$key_inner];
|
84 |
-
} else if(!isset($key_inner)
|
85 |
return $this->data[$key];
|
86 |
}
|
87 |
} else {
|
3 |
Plugin Name: WP htaccess Control
|
4 |
Plugin URI: http://antonioandra.de
|
5 |
Description: Interface to customize the permalinks (author, category, archives and pagination) and htaccess file generated by WordPress.
|
6 |
+
Version: 3.4.5
|
7 |
Author: António Andrade
|
8 |
Author URI: http://antonioandra.de
|
9 |
*/
|
75 |
/*
|
76 |
* @param $key
|
77 |
*/
|
78 |
+
function get_data($key, $key_inner=null)
|
79 |
{
|
|
|
80 |
if (isset($this->data[$key])) {
|
81 |
if ($key_inner != "" && isset($this->data[$key][$key_inner])) {
|
82 |
return $this->data[$key][$key_inner];
|
83 |
+
} else if(!isset($key_inner)) {
|
84 |
return $this->data[$key];
|
85 |
}
|
86 |
} else {
|