Version Description
Download this release
Release Info
Developer | mtekk |
Plugin | Breadcrumb NavXT |
Version | 2.0.4 |
Comparing to | |
See all releases |
Code changes from version 2.0.3 to 2.0.4
- breadcrumb_navxt_admin.php +2 -2
- breadcrumb_navxt_api.php +5 -2
- breadcrumb_navxt_class.php +2 -2
- readme.txt +3 -3
breadcrumb_navxt_admin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Breadcrumb NavXT - Adminstration Interface
|
4 |
Plugin URI: http://mtekk.weblogs.us/code/breadcrumb-navxt/
|
5 |
Description: Adds a breadcrumb navigation showing the visitor's path to their current location. For details on how to use this plugin visit <a href="http://mtekk.weblogs.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
|
6 |
-
Version: 2.0.
|
7 |
Author: John Havlik
|
8 |
Author URI: http://mtekk.weblogs.us/
|
9 |
*/
|
@@ -23,7 +23,7 @@ Author URI: http://mtekk.weblogs.us/
|
|
23 |
along with this program; if not, write to the Free Software
|
24 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
25 |
*/
|
26 |
-
$bcn_admin_version = "2.0.
|
27 |
$bcn_admin_req = 8;
|
28 |
//Include the breadcrumb class if needed
|
29 |
if(!class_exists('bcn_breadcrumb'))
|
3 |
Plugin Name: Breadcrumb NavXT - Adminstration Interface
|
4 |
Plugin URI: http://mtekk.weblogs.us/code/breadcrumb-navxt/
|
5 |
Description: Adds a breadcrumb navigation showing the visitor's path to their current location. For details on how to use this plugin visit <a href="http://mtekk.weblogs.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
|
6 |
+
Version: 2.0.4
|
7 |
Author: John Havlik
|
8 |
Author URI: http://mtekk.weblogs.us/
|
9 |
*/
|
23 |
along with this program; if not, write to the Free Software
|
24 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
25 |
*/
|
26 |
+
$bcn_admin_version = "2.0.4";
|
27 |
$bcn_admin_req = 8;
|
28 |
//Include the breadcrumb class if needed
|
29 |
if(!class_exists('bcn_breadcrumb'))
|
breadcrumb_navxt_api.php
CHANGED
@@ -79,9 +79,12 @@ function bcn_get($varname)
|
|
79 |
}
|
80 |
//Preserv the end space if exists
|
81 |
$bcn_length = strlen($bcn_value) - 1;
|
82 |
-
if(
|
83 |
{
|
84 |
-
$bcn_value
|
|
|
|
|
|
|
85 |
}
|
86 |
}
|
87 |
//Remove by faulty-wordpress-code added slashes
|
79 |
}
|
80 |
//Preserv the end space if exists
|
81 |
$bcn_length = strlen($bcn_value) - 1;
|
82 |
+
if($bcn_length > 0)
|
83 |
{
|
84 |
+
if(strpos($bcn_value, " ", $bcn_length - 1) === $bcn_length)
|
85 |
+
{
|
86 |
+
$bcn_value = rtrim($bcn_value) . " ";
|
87 |
+
}
|
88 |
}
|
89 |
}
|
90 |
//Remove by faulty-wordpress-code added slashes
|
breadcrumb_navxt_class.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Breadcrumb NavXT - Core
|
4 |
Plugin URI: http://mtekk.weblogs.us/code/breadcrumb-navxt/
|
5 |
Description: Adds a breadcrumb navigation showing the visitor's path to their current location. For details on how to use this plugin visit <a href="http://mtekk.weblogs.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
|
6 |
-
Version: 2.0.
|
7 |
Author: John Havlik
|
8 |
Author URI: http://mtekk.weblogs.us/
|
9 |
*/
|
@@ -23,7 +23,7 @@ Author URI: http://mtekk.weblogs.us/
|
|
23 |
along with this program; if not, write to the Free Software
|
24 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
25 |
*/
|
26 |
-
$bcn_version = "2.0.
|
27 |
//The main class
|
28 |
class bcn_breadcrumb
|
29 |
{
|
3 |
Plugin Name: Breadcrumb NavXT - Core
|
4 |
Plugin URI: http://mtekk.weblogs.us/code/breadcrumb-navxt/
|
5 |
Description: Adds a breadcrumb navigation showing the visitor's path to their current location. For details on how to use this plugin visit <a href="http://mtekk.weblogs.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
|
6 |
+
Version: 2.0.4
|
7 |
Author: John Havlik
|
8 |
Author URI: http://mtekk.weblogs.us/
|
9 |
*/
|
23 |
along with this program; if not, write to the Free Software
|
24 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
25 |
*/
|
26 |
+
$bcn_version = "2.0.4";
|
27 |
//The main class
|
28 |
class bcn_breadcrumb
|
29 |
{
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Breadcrumb NavXT ===
|
2 |
-
Contributors: mtekk
|
3 |
Tags: breadcrumb, navigation
|
4 |
Requires at least: 2.3.0
|
5 |
-
Tested up to: 2.
|
6 |
-
Stable tag: 2.0.
|
7 |
|
8 |
Adds breadcrumb navigation showing the visitor's path to their current location.
|
9 |
|
1 |
=== Breadcrumb NavXT ===
|
2 |
+
Contributors: mtekk, hakre
|
3 |
Tags: breadcrumb, navigation
|
4 |
Requires at least: 2.3.0
|
5 |
+
Tested up to: 2.5-RC1.1
|
6 |
+
Stable tag: 2.0.4
|
7 |
|
8 |
Adds breadcrumb navigation showing the visitor's path to their current location.
|
9 |
|