diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-30 01:49:13 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-30 01:49:13 +0000 |
commit | 318700ad7cd0e67bf02a1e6777cb5c2cd4c3b240 (patch) | |
tree | b8b9d60e5fdc3459b56da39825091b0f2c38ce77 /templates | |
parent | 7cdf1e980d294085fd1053a1c50cede127bf1352 (diff) | |
download | ampache-318700ad7cd0e67bf02a1e6777cb5c2cd4c3b240.tar.gz ampache-318700ad7cd0e67bf02a1e6777cb5c2cd4c3b240.tar.bz2 ampache-318700ad7cd0e67bf02a1e6777cb5c2cd4c3b240.zip |
fixed paging on browse catalogs page, disabled the write_tags script and removed a dbl escape on the preferences
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_album.inc.php | 2 | ||||
-rw-r--r-- | templates/show_artist.inc.php | 2 | ||||
-rw-r--r-- | templates/show_playlist.inc.php | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/templates/show_album.inc.php b/templates/show_album.inc.php index 45cb95bc..4b81c4ff 100644 --- a/templates/show_album.inc.php +++ b/templates/show_album.inc.php @@ -63,7 +63,6 @@ $title = scrub_out($album->name) . ' (' . $album->year . ') -- ' <div id="additional_information"> </div> -<div id="browse_content"> <?php $object_ids = $album->get_songs(); Browse::set_type('song'); @@ -71,4 +70,3 @@ $title = scrub_out($album->name) . ' (' . $album->year . ') -- ' Browse::save_objects($object_ids); Browse::show_objects($object_ids); ?> -</div> diff --git a/templates/show_artist.inc.php b/templates/show_artist.inc.php index 720e36b5..2bbb9cf5 100644 --- a/templates/show_artist.inc.php +++ b/templates/show_artist.inc.php @@ -24,7 +24,6 @@ $web_path = Config::get('web_path'); require Config::get('prefix') . '/templates/show_artist_box.inc.php'; ?> -<div id="browse_content"> <?php Browse::reset_filters(); Browse::set_type('album'); @@ -32,4 +31,3 @@ require Config::get('prefix') . '/templates/show_artist_box.inc.php'; Browse::save_objects($albums); Browse::show_objects($albums); ?> -</div> diff --git a/templates/show_playlist.inc.php b/templates/show_playlist.inc.php index 057fcec1..0c72526c 100644 --- a/templates/show_playlist.inc.php +++ b/templates/show_playlist.inc.php @@ -33,7 +33,6 @@ $web_path = Config::get('web_path'); </ul> </div> <?php show_box_bottom(); ?> -<div id="browse_content"> <?php $object_ids = $playlist->get_items(); Browse::set_type('playlist_song'); @@ -42,4 +41,3 @@ $web_path = Config::get('web_path'); Browse::save_objects($object_ids); Browse::show_objects($object_ids); ?> -</div> |