Changeset 4144 for trunk/wp-includes/bookmark-template.php
- Timestamp:
- 08/30/2006 09:46:31 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/bookmark-template.php
r4108 r4144 94 94 $output .= $before; 95 95 if ( $show_updated && $row->recently_updated ) 96 $output .= get_ settings('links_recently_updated_prepend');96 $output .= get_option('links_recently_updated_prepend'); 97 97 $the_link = '#'; 98 98 if ( !empty($row->link_url) ) … … 108 108 if ( $show_updated ) 109 109 if (substr($row->link_updated_f, 0, 2) != '00') 110 $title .= ' (Last updated ' . date(get_ settings('links_updated_date_format'), $row->link_updated_f + (get_settings('gmt_offset') * 3600)) . ')';110 $title .= ' (Last updated ' . date(get_option('links_updated_date_format'), $row->link_updated_f + (get_option('gmt_offset') * 3600)) . ')'; 111 111 112 112 if ( '' != $title ) … … 125 125 $output .= "<img src=\"$row->link_image\" $alt $title />"; 126 126 else // If it's a relative path 127 $output .= "<img src=\"" . get_ settings('siteurl') . "$row->link_image\" $alt $title />";127 $output .= "<img src=\"" . get_option('siteurl') . "$row->link_image\" $alt $title />"; 128 128 } else { 129 129 $output .= $name; … … 133 133 134 134 if ( $show_updated && $row->recently_updated ) 135 $output .= get_ settings('links_recently_updated_append');135 $output .= get_option('links_recently_updated_append'); 136 136 137 137 if ( $show_description && '' != $desc ) … … 257 257 $output .= $before; 258 258 if ( $show_updated && $bookmark->recently_updated ) 259 $output .= get_ settings('links_recently_updated_prepend');259 $output .= get_option('links_recently_updated_prepend'); 260 260 261 261 $the_link = '#'; … … 273 273 if ( $show_updated ) 274 274 if ( '00' != substr($bookmark->link_updated_f, 0, 2) ) 275 $title .= ' (Last updated ' . date(get_ settings('links_updated_date_format'), $bookmark->link_updated_f + (get_settings('gmt_offset') * 3600)) . ')';275 $title .= ' (Last updated ' . date(get_option('links_updated_date_format'), $bookmark->link_updated_f + (get_option('gmt_offset') * 3600)) . ')'; 276 276 277 277 if ( '' != $title ) … … 290 290 $output .= "<img src=\"$bookmark->link_image\" $alt $title />"; 291 291 else // If it's a relative path 292 $output .= "<img src=\"" . get_ settings('siteurl') . "$bookmark->link_image\" $alt $title />";292 $output .= "<img src=\"" . get_option('siteurl') . "$bookmark->link_image\" $alt $title />"; 293 293 } else { 294 294 $output .= $name; … … 298 298 299 299 if ( $show_updated && $bookmark->recently_updated ) 300 $output .= get_ settings('links_recently_updated_append');300 $output .= get_option('links_recently_updated_append'); 301 301 302 302 if ( $show_description && '' != $desc )
Note: See TracChangeset
for help on using the changeset viewer.