diff options
author | xgizzmo <xgizzmo@ampache> | 2007-07-29 21:21:32 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2007-07-29 21:21:32 +0000 |
commit | e46b19547e7d16999b05577ec64631cc12796355 (patch) | |
tree | a18f0af39faecf11f2f1faa770991c34b59906a4 /lib/class | |
parent | f6121006313be194bc760e27e4af60828c69b38f (diff) | |
download | ampache-e46b19547e7d16999b05577ec64631cc12796355.tar.gz ampache-e46b19547e7d16999b05577ec64631cc12796355.tar.bz2 ampache-e46b19547e7d16999b05577ec64631cc12796355.zip |
Replace references to old code with new code
Diffstat (limited to 'lib/class')
-rw-r--r-- | lib/class/genre.class.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/class/genre.class.php b/lib/class/genre.class.php index 64a44b96..a37c449e 100644 --- a/lib/class/genre.class.php +++ b/lib/class/genre.class.php @@ -67,8 +67,8 @@ class Genre { $this->f_link = "<a href=\"" . Config::get('web_path') . "/genre.php?action=show_genre&genre_id=" . $this->id . "\">" . scrub_out($this->name) . "</a>"; - $this->play_link = Config::get('web_path') . '/song.php?action=genre&genre=' . $this->id; - $this->random_link = Config::get('web_path') . '/song.php?action=random_genre&genre=' . $this->id; + $this->play_link = Config::get('web_path') . '/stream.php?action=genre&genre=' . $this->id; + $this->random_link = Config::get('web_path') . '/stream.php?action=random_genre&genre=' . $this->id; $this->download_link = Config::get('web_path') . '/batch.php?action=genre&id=' . $this->id; } // format |