Make WordPress Core


Ignore:
Timestamp:
04/03/2014 03:09:59 AM (11 years ago)
Author:
nacin
Message:

Remove old links_recently_updated_* DB options that never had a UI.

fixes #27649.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/bookmark.php

    r26046 r27916  
    227227    }
    228228
    229     if ( $show_updated && get_option('links_recently_updated_time') ) {
    230         $recently_updated_test = ", IF (DATE_ADD(link_updated, INTERVAL " . get_option('links_recently_updated_time') . " MINUTE) >= NOW(), 1,0) as recently_updated ";
     229    if ( $show_updated ) {
     230        $recently_updated_test = ", IF (DATE_ADD(link_updated, INTERVAL 120 MINUTE) >= NOW(), 1,0) as recently_updated ";
    231231    } else {
    232232        $recently_updated_test = '';
Note: See TracChangeset for help on using the changeset viewer.