Make WordPress Core

Changeset 5644


Ignore:
Timestamp:
06/03/2007 09:45:49 PM (19 years ago)
Author:
markjaquith
Message:

Older MySQL versions need "INNER" to be specified

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0/wp-links-opml.php

    r4656 r5644  
    2929<?php $sql = "SELECT $wpdb->links.link_url, link_rss, $wpdb->links.link_name, $wpdb->links.link_category, $wpdb->linkcategories.cat_name, link_updated
    3030FROM $wpdb->links
    31  JOIN $wpdb->linkcategories on $wpdb->links.link_category = $wpdb->linkcategories.cat_id
     31 INNER JOIN $wpdb->linkcategories on $wpdb->links.link_category = $wpdb->linkcategories.cat_id
    3232 AND $wpdb->links.link_visible = 'Y'
    3333 $sql_cat
Note: See TracChangeset for help on using the changeset viewer.