Changeset 4656 for branches/2.0/wp-links-opml.php
- Timestamp:
- 12/21/2006 10:10:04 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/wp-links-opml.php
r3470 r4656 45 45 } // end if not first time 46 46 ?> 47 <outline type="category" title="<?php echo wp_specialchars($result->cat_name); ?>">47 <outline type="category" title="<?php echo attribute_escape($result->cat_name); ?>"> 48 48 <?php 49 49 $prev_cat_id = $result->link_category; 50 50 } // end if new category 51 51 ?> 52 <outline text="<?php echo wp_specialchars($result->link_name); ?>" type="link" xmlUrl="<?php echo wp_specialchars($result->link_rss); ?>" htmlUrl="<?php echo wp_specialchars($result->link_url); ?>" updated="<?php if ('0000-00-00 00:00:00' != $result->link_updated) echo $result->link_updated; ?>" />52 <outline text="<?php echo attribute_escape($result->link_name); ?>" type="link" xmlUrl="<?php echo attribute_escape($result->link_rss); ?>" htmlUrl="<?php echo attribute_escape($result->link_url); ?>" updated="<?php if ('0000-00-00 00:00:00' != $result->link_updated) echo $result->link_updated; ?>" /> 53 53 <?php 54 54 } // end foreach
Note: See TracChangeset
for help on using the changeset viewer.