Changeset 1606 for branches/multiuser/util.php
- Timestamp:
- 10/16/06 08:11:03 (2 years ago)
- Files:
-
- 1 modified
-
branches/multiuser/util.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/multiuser/util.php
r1604 r1606 277 277 } 278 278 279 $author = strip_tags($author);279 $author = trim(strip_tags($author)); 280 280 281 281 // pubdate … … 479 479 $title = rss_real_escape_string($title_); 480 480 } 481 elseif (is_object($rss) && array_key_exists('title', $rss->channel)) { 482 $title = rss_real_escape_string($rss->channel['title']); 481 elseif (is_object($rss) && array_key_exists('title#', $rss->channel)) { 482 if (array_key_exists('title', $rss->channel)) { 483 $title = rss_real_escape_string($rss->channel['title']); 484 } else { 485 $title = " "; 486 } 483 487 } 484 488 else {
