diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-15 06:12:52 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-15 06:12:52 +0000 |
commit | 063e67887b48ea9ba5570638dcfaf5439f0337da (patch) | |
tree | 6c8e958435d96505408f9dd63e76e038220f16bc /templates/show_songs.inc | |
parent | b469b70195a92f7087d3b9c15bbc10797e0411a7 (diff) | |
download | ampache-063e67887b48ea9ba5570638dcfaf5439f0337da.tar.gz ampache-063e67887b48ea9ba5570638dcfaf5439f0337da.tar.bz2 ampache-063e67887b48ea9ba5570638dcfaf5439f0337da.zip |
browse by title and page header hotness
Diffstat (limited to 'templates/show_songs.inc')
-rw-r--r-- | templates/show_songs.inc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/show_songs.inc b/templates/show_songs.inc index 7d2c5620..09ebc31a 100644 --- a/templates/show_songs.inc +++ b/templates/show_songs.inc @@ -30,6 +30,13 @@ if (is_object($playlist) && ($GLOBALS['user']->username == $playlist->user || $G ?> <form id="songs" method="post" enctype="multipart/form-data" action="#" style="Display:inline;"> <table class="border" cellspacing="0" cellpadding="0" border="0"> +<?php if (is_object($GLOBALS['view'])) { ?> +<tr class="even" align="center"> + <td colspan="12"> + <?php if ($GLOBALS['view']->offset_limit) { require (conf('prefix') . "/templates/list_header.inc"); } ?> + </td> +</tr> +<?php } ?> <tr class="table-header"> <th> <a href="#" onclick="check_songs(); return false;">Select</a></th> <?php if ($playlist_owner) { ?> @@ -160,6 +167,13 @@ $num = count($song_ids); <td></td> <td colspan="2"></td> </tr> +<?php if (is_object($GLOBALS['view'])) { ?> +<tr class="even" align="center"> + <td colspan="12"> + <?php if ($GLOBALS['view']->offset_limit) { require (conf('prefix') . "/templates/list_header.inc"); } ?> + </td> +</tr> +<?php } ?> </table> <p class="header2"><?php echo _('** Indicates flagged songs'); ?></p> <br /> |