Changeset 4144 for trunk/wp-includes/category-template.php
- Timestamp:
- 08/30/2006 09:46:31 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/category-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/category-template.php
r3881 r4144 24 24 25 25 if ( empty($catlink) ) { 26 $file = get_ settings('home') . '/';26 $file = get_option('home') . '/'; 27 27 $catlink = $file . '?cat=' . $category_id; 28 28 } else { … … 34 34 35 35 $catlink = str_replace('%category%', $category_nicename, $catlink); 36 $catlink = get_ settings('home') . trailingslashit($catlink);36 $catlink = get_option('home') . trailingslashit($catlink); 37 37 } 38 38 return apply_filters('category_link', $catlink, $category_id);
Note: See TracChangeset
for help on using the changeset viewer.