diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-02 06:52:34 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-02 06:52:34 +0000 |
commit | b909c08509458f4a76ba0ba7922316cd7e55b0d4 (patch) | |
tree | 46ebdf016a7664a077deb089103587c04aad60dc /templates/show_artists.inc.php | |
parent | 1c101a3b347b7240ab08e7ee03ab4c24673e58d8 (diff) | |
download | ampache-b909c08509458f4a76ba0ba7922316cd7e55b0d4.tar.gz ampache-b909c08509458f4a76ba0ba7922316cd7e55b0d4.tar.bz2 ampache-b909c08509458f4a76ba0ba7922316cd7e55b0d4.zip |
fixed a bug in the numbering, referencing a non-existant value
Diffstat (limited to 'templates/show_artists.inc.php')
-rw-r--r-- | templates/show_artists.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_artists.inc.php b/templates/show_artists.inc.php index 3e76c26c..7339b541 100644 --- a/templates/show_artists.inc.php +++ b/templates/show_artists.inc.php @@ -53,9 +53,9 @@ foreach ($object_ids as $artist_id) { <td><?php echo _('Action'); ?></td> </tr> -<tr class="even" align="center"> - <td colspan="4"> - <?php if ($view->offset_limit) { require (conf('prefix') . "/templates/list_header.inc"); } ?> +<tr class="table-header" align="center"> + <td colspan="5"> + <?php require Config::get('prefix') . '/templates/list_header.inc.php'; ?> </td> </tr> </table> |