Make WordPress Core

Changeset 956 for trunk/wp-locations.php


Ignore:
Timestamp:
03/01/2004 06:13:32 AM (21 years ago)
Author:
saxmatt
Message:

Migration to get_settings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-locations.php

    r628 r956  
    1616        <longitude><?php print_Lon() ?></longitude>
    1717<?php
    18         if ($rss_use_excerpt) {
     18        if (get_settings('rss_use_excerpt')) {
    1919?>
    20         <note><?php the_content_rss('', 0, '', $rss_excerpt_length, $rss_encoded_html) ?>
     20        <note><?php the_content_rss('', 0, '', get_settings('rss_excerpt_length'), get_settings('rss_encoded_html')) ?>
    2121        </note>
    2222<?php
    2323        } else { // use content
    2424?>
    25         <note><?php the_excerpt_rss('', 0, '', $rss_excerpt_length, $rss_encoded_html) ?></note>
     25        <note><?php the_excerpt_rss('', 0, '', get_settings('rss_excerpt_length'), get_settings('rss_encoded_html')) ?></note>
    2626<?php
    2727        } // end else use content
Note: See TracChangeset for help on using the changeset viewer.