Changeset 1851 for trunk/wp-includes/template-functions-category.php
- Timestamp:
- 11/12/2004 11:08:51 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/template-functions-category.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/template-functions-category.php
r1527 r1851 9 9 10 10 if ($category_cache[$id]) { 11 return$category_cache[$id];11 $categories = $category_cache[$id]; 12 12 } else { 13 13 $categories = $wpdb->get_results(" … … 17 17 "); 18 18 19 return $categories; 20 } 19 } 20 21 sort($categories); 22 return $categories; 21 23 } 22 24
Note: See TracChangeset
for help on using the changeset viewer.