Missed the cat call.

git-svn-id: http://svn.automattic.com/wordpress/trunk@1228 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2004-05-05 07:59:51 +00:00
parent 5a391b5bc8
commit 8309fe9c31
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ function get_category_link($echo = false, $category_id, $category_nicename) {
$category_nicename = preg_replace( '|[^a-z0-9-]|i', '', $category_nicename );
// Get any static stuff from the front
$front = substr($permalink_structure, 0, strpos($permalink_structure, '%'));
$link = get_settings('home') . $front . 'category/';
$link = get_settings('home') . get_settings('category_base') . '/';
if ($parent=$cache_categories[$category_id]->category_parent) $link .= get_category_parents($parent, FALSE, '/', TRUE);
$link .= $category_nicename . '/';
}