Version Description
(27/04/2012) = * Fix: still fixing 3.0 critical errors (mostly data handling and link filtering).
Download this release
Release Info
Developer | antonioandra.de |
Plugin | WP htaccess Control |
Version | 3.2 |
Comparing to | |
See all releases |
Code changes from version 3.1 to 3.2
- readme.txt +4 -1
- wp-htaccess-control.php +3 -3
readme.txt
CHANGED
@@ -7,7 +7,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=s4man
|
|
7 |
Tags: permalinks, permalink, author, htaccess, rewrite, redirect, admin, maintenance, pagination, category, category base, archive, archives
|
8 |
Requires at least: 2.7
|
9 |
Tested up to: 3.3.2
|
10 |
-
Stable tag: 3.
|
11 |
|
12 |
Interface to customize the permalinks (author, category, archives and pagination) and htaccess file generated by Wordpress.
|
13 |
|
@@ -76,6 +76,9 @@ Search redirection is based on Mark Jaquith's **Nice Search** but extended so th
|
|
76 |
|
77 |
== Changelog ==
|
78 |
|
|
|
|
|
|
|
79 |
= 3.1 (27/04/2012) =
|
80 |
* Fix: 3.0 introduced errors (removal of bases regardless of the settings);
|
81 |
* Optimized number of actions and filters and database access.
|
7 |
Tags: permalinks, permalink, author, htaccess, rewrite, redirect, admin, maintenance, pagination, category, category base, archive, archives
|
8 |
Requires at least: 2.7
|
9 |
Tested up to: 3.3.2
|
10 |
+
Stable tag: 3.2
|
11 |
|
12 |
Interface to customize the permalinks (author, category, archives and pagination) and htaccess file generated by Wordpress.
|
13 |
|
76 |
|
77 |
== Changelog ==
|
78 |
|
79 |
+
= 3.2 (27/04/2012) =
|
80 |
+
* Fix: still fixing 3.0 critical errors (mostly data handling and link filtering).
|
81 |
+
|
82 |
= 3.1 (27/04/2012) =
|
83 |
* Fix: 3.0 introduced errors (removal of bases regardless of the settings);
|
84 |
* Optimized number of actions and filters and database access.
|
wp-htaccess-control.php
CHANGED
@@ -32,7 +32,7 @@ if (!class_exists("WPhtc")) {
|
|
32 |
public $data;
|
33 |
|
34 |
function WPhtc() {
|
35 |
-
$data=get_option('WPhtc_data');
|
36 |
}
|
37 |
function init(){
|
38 |
# set locale
|
@@ -511,10 +511,10 @@ if (!class_exists("WPhtc")) {
|
|
511 |
foreach($txs as $t){
|
512 |
//return str_replace($t->rewrite['slug']."/","",$termlink);
|
513 |
if($term->parent!=0){
|
514 |
-
return get_bloginfo('home')."/".$this->term_ancestors($taxonomy,$term->parent).$term->
|
515 |
}
|
516 |
else{
|
517 |
-
return get_bloginfo('home')."/".$term->
|
518 |
}
|
519 |
}
|
520 |
}
|
32 |
public $data;
|
33 |
|
34 |
function WPhtc() {
|
35 |
+
$this->data=get_option('WPhtc_data');
|
36 |
}
|
37 |
function init(){
|
38 |
# set locale
|
511 |
foreach($txs as $t){
|
512 |
//return str_replace($t->rewrite['slug']."/","",$termlink);
|
513 |
if($term->parent!=0){
|
514 |
+
return get_bloginfo('home')."/".$this->term_ancestors($taxonomy,$term->parent)."/".$term->slug;
|
515 |
}
|
516 |
else{
|
517 |
+
return get_bloginfo('home')."/".$term->slug;
|
518 |
}
|
519 |
}
|
520 |
}
|