Changeset 986
- Timestamp:
- 10/27/05 07:51:40 (3 years ago)
- Files:
-
- 1 modified
-
trunk/rss/cls/items.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/rss/cls/items.php
r984 r986 73 73 } 74 74 $this->escapedTitle = preg_replace("/[^A-Za-z0-9%\.]/", "_", utf8_uri_encode($title)); 75 $this->url = $url;75 $this->url = trim($url); 76 76 $this->enclosure = $enclosure; 77 77 $this->feed = $parent; 78 78 $this->author = $author; 79 79 if ($description) { 80 $this->description = $description;80 $this->description = trim($description); 81 81 } elseif($title) { 82 82 $this -> description = $title;
