summaryrefslogtreecommitdiffstats
path: root/templates/show_flagged.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-03-28 07:00:32 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-03-28 07:00:32 +0000
commitc603a3c5c098393e8aaa72e293daec5a431ee0c9 (patch)
treed9841a0585e5a5c9004d0bbfa8db9e7480c23b54 /templates/show_flagged.inc.php
parent0bacebf1eb56430e0c0013be1604045ca25246ef (diff)
downloadampache-c603a3c5c098393e8aaa72e293daec5a431ee0c9.tar.gz
ampache-c603a3c5c098393e8aaa72e293daec5a431ee0c9.tar.bz2
ampache-c603a3c5c098393e8aaa72e293daec5a431ee0c9.zip
fixed a minor flaging glitch
Diffstat (limited to 'templates/show_flagged.inc.php')
-rw-r--r--templates/show_flagged.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_flagged.inc.php b/templates/show_flagged.inc.php
index b078a2da..660b3772 100644
--- a/templates/show_flagged.inc.php
+++ b/templates/show_flagged.inc.php
@@ -30,7 +30,7 @@ $web_path = conf('web_path');
<th><?php echo _('Status'); ?></th>
<th><?php echo _('Action'); ?></th>
</tr>
-<?php foreach ($flagged as $flag_id) { $flag = new Flag($flag_id); ?>
+<?php foreach ($flagged as $data) { $flag = new Flag($data); ?>
<tr class="<?php echo flip_class(); ?>">
<td><?php $flag->print_name(); ?></td>
<td><?php $flag->print_flag(); ?></td>