Changeset 1087
- Timestamp:
- 09/11/08 21:57:48 (10 months ago)
- Files:
-
- trunk/swisscenter/ext/iradio/shoutcast.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/swisscenter/ext/iradio/shoutcast.php
r942 r1087 26 26 function shoutcast() { 27 27 $this->iradio(); 28 $this->set_site(" www.shoutcast.com");28 $this->set_site("classic.shoutcast.com"); 29 29 } 30 30 … … 105 105 function search_genre($name) { 106 106 send_to_log(6,"IRadio: Initialize genre search for \"$name\""); 107 return $this->parse(" ?sgenre=".str_replace(' ','+',$name),str_replace(' ','_',$name));107 return $this->parse("/directory/index.phtml?sgenre=".str_replace(' ','+',$name),str_replace(' ','_',$name)); 108 108 } 109 109 … … 120 120 function search_station($name) { 121 121 send_to_log(6,"IRadio: Initialize station search for \"$name\""); 122 return $this->parse(" ?s=".str_replace(' ','+',$name),str_replace(' ','_',$name));122 return $this->parse("/directory/index.phtml?s=".str_replace(' ','+',$name),str_replace(' ','_',$name)); 123 123 } 124 124