Changeset 4495 for trunk/wp-includes/bookmark.php
- Timestamp:
- 11/19/2006 07:56:05 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/bookmark.php
r4219 r4495 20 20 // Deprecate 21 21 function get_link($bookmark_id, $output = OBJECT) { 22 return get_bookmark($bookmark_id, $output); 22 return get_bookmark($bookmark_id, $output); 23 23 } 24 24 … … 51 51 } 52 52 } 53 if (!empty($inclusions)) 53 if (!empty($inclusions)) 54 54 $inclusions .= ')'; 55 55 … … 66 66 } 67 67 } 68 if (!empty($exclusions)) 68 if (!empty($exclusions)) 69 69 $exclusions .= ')'; 70 70 71 71 if ( ! empty($category_name) ) { 72 72 if ( $cat_id = $wpdb->get_var("SELECT cat_ID FROM $wpdb->categories WHERE cat_name='$category_name' LIMIT 1") ) … … 88 88 } 89 89 if (!empty($category_query)) { 90 $category_query .= ')'; 90 $category_query .= ')'; 91 91 $join = " LEFT JOIN $wpdb->link2cat ON ($wpdb->links.link_id = $wpdb->link2cat.link_id) "; 92 92 }
Note: See TracChangeset
for help on using the changeset viewer.