diff options
author | pb1dft <pb1dft@ampache> | 2007-01-12 22:42:02 +0000 |
---|---|---|
committer | pb1dft <pb1dft@ampache> | 2007-01-12 22:42:02 +0000 |
commit | 0d00b531c444e514da8a6cf0d056d594c5c96ad6 (patch) | |
tree | 747f695d5e6c7f1193e4ce09907c0ccf3706a2fa /templates/show_mail_users.inc.php | |
parent | a3bdc3148d924a3f1e8e2052572930bdf159829a (diff) | |
download | ampache-0d00b531c444e514da8a6cf0d056d594c5c96ad6.tar.gz ampache-0d00b531c444e514da8a6cf0d056d594c5c96ad6.tar.bz2 ampache-0d00b531c444e514da8a6cf0d056d594c5c96ad6.zip |
Added ability to mail users/admins the flaged and disabled songs
Diffstat (limited to 'templates/show_mail_users.inc.php')
-rw-r--r-- | templates/show_mail_users.inc.php | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/templates/show_mail_users.inc.php b/templates/show_mail_users.inc.php index a8157d21..ee33a90f 100644 --- a/templates/show_mail_users.inc.php +++ b/templates/show_mail_users.inc.php @@ -64,12 +64,24 @@ <td> <input type="checkbox" name="new_albums" value="yes" /> </td> - <td><?php echo _('Most Popular Songs'); ?>:</td> + <td><?php echo _('Most Popular Songs'); ?>:</td> <td> <input type="checkbox" name="pop_songs" value="yes" /> </td> </tr> <tr> + <td><?php echo _('Flagged Songs'); ?>:</td> + <td> + <input type="checkbox" name="flagged" value="yes" /> + </td> + <td><?php echo _('Disabled Songs'); ?>:</td> + <td> + <input type="checkbox" name="disabled" value="yes" /> + </td> + + </tr> + + <tr> <td colspan = "2"><?php echo _('Most Popular Threshold in days'); ?>:</td> <td> <input type="text" name="threshold" value="<?php echo conf('popular_threshold'); ?>" /> |