Changeset 1595 for branches/multiuser/cls
- Timestamp:
- 10/04/06 06:55:02 (2 years ago)
- Location:
- branches/multiuser/cls
- Files:
-
- 2 modified
-
channels.php (modified) (1 diff)
-
wrappers/item.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/multiuser/cls/channels.php
r1541 r1595 90 90 //$this->rlink = getPath().preg_replace("/[^a-zA-Z0-9_]/", "_", $title)."/"; 91 91 /* EXPERIMENTAL! */ 92 $this->rlink = getPath() . utf8_uri_encode(preg_replace('/[\s&\/ ]/','_',$title)) . "/";92 $this->rlink = getPath() . utf8_uri_encode(preg_replace('/[\s&\/\+]/','_',$title)) . "/"; 93 93 } else { 94 94 $this->rlink = getPath()."feed.php?channel=$id"; -
branches/multiuser/cls/wrappers/item.php
r1493 r1595 72 72 return $url; 73 73 } 74 return rss_item_pl_url();74 return "http://" . $_SERVER['HTTP_HOST'] . rss_item_pl_url(); 75 75 } 76 76
