Changeset 8016
- Timestamp:
- 05/30/2008 03:59:14 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/dashboard.php
r7998 r8016 390 390 foreach ($rss->items as $item ) { 391 391 $title = wp_specialchars($item['title']); 392 $author = preg_replace( '|(.+?):.+|s', '$1', $item['title'] ); 393 $post = preg_replace( '|.+?:(.+)|s', '$1', $item['title'] ); 392 list($author,$post) = explode( ':', $title, 2 ); 394 393 $link = clean_url($item['link']); 395 394
Note: See TracChangeset
for help on using the changeset viewer.