Changeset 5759
- Timestamp:
- 06/25/07 21:37:47 (1 year ago)
- Files:
-
- trunk/wp-links-opml.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-links-opml.php
r5640 r5759 30 30 31 31 foreach ((array) $cats as $cat) { 32 $catname = apply_filters('link_category', $cat-> cat_name);32 $catname = apply_filters('link_category', $cat->name); 33 33 34 34 ?> … … 36 36 <?php 37 37 38 $bookmarks = get_bookmarks("category={$cat-> cat_ID}");38 $bookmarks = get_bookmarks("category={$cat->term_id}"); 39 39 foreach ((array) $bookmarks as $bookmark) { 40 40 $title = attribute_escape(apply_filters('link_title', $bookmark->link_name));
