diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-22 04:35:24 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-22 04:35:24 +0000 |
commit | c9bf00afb1611a05b85088264cb4d42efbb8ab73 (patch) | |
tree | a3fd7f71d48af7ba005d83ea5291fd3b6b1bd40e /templates/show_flagged.inc.php | |
parent | e540814435a7b825ef585bdcbf0b79f3f5f47e99 (diff) | |
download | ampache-c9bf00afb1611a05b85088264cb4d42efbb8ab73.tar.gz ampache-c9bf00afb1611a05b85088264cb4d42efbb8ab73.tar.bz2 ampache-c9bf00afb1611a05b85088264cb4d42efbb8ab73.zip |
removed some unused files, and tweaked the style of a few pages
Diffstat (limited to 'templates/show_flagged.inc.php')
-rw-r--r-- | templates/show_flagged.inc.php | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/templates/show_flagged.inc.php b/templates/show_flagged.inc.php index 4337c644..4d65d8ac 100644 --- a/templates/show_flagged.inc.php +++ b/templates/show_flagged.inc.php @@ -5,9 +5,8 @@ All rights reserved. This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + modify it under the terms of the GNU General Public License v2 + as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -21,7 +20,6 @@ */ $web_path = conf('web_path'); - ?> <table class="tabledata" cellspacing="0" cellpadding="0"> <tr class="table-header"> @@ -52,4 +50,13 @@ $web_path = conf('web_path'); <td colspan="4" class="error"><?php echo _('No Records Found'); ?></td> </tr> <?php } ?> +<?php if ($total_flagged > count($flagged)) { ?> +<tr class="<?php echo flip_class(); ?>"> + <td colspan="4"> + <a href="<?php echo $web_path; ?>/admin/flag.php?action=show_flagged"> + <?php echo _('Show All'); ?>... + </a> + </td> +</tr> +<?php } ?> </table> |