Skip to content

Commit

Permalink
Fixes #8970, this adds in a transcoded flag icon for transcoded recor…
Browse files Browse the repository at this point in the history
…dings.

Signed-off-by: Rob Smith <kormoc@mythtv.org>
  • Loading branch information
dhaber authored and kormoc committed Mar 25, 2013
1 parent 56970fc commit af2d75e
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion modules/tv/tmpl/default/detail.php
Expand Up @@ -263,7 +263,7 @@ function updateHomePage(item) {
// Report transcoded status for recordings
if ($program->filename) {
if ($program->is_transcoded)
echo t(' TRANSCODED');
echo '<img src="'.skin_url.'/img/flags/transcoded.png" title="'.t('Transcoded').'">';
}
?></td>
</tr><?php
Expand Down
2 changes: 2 additions & 0 deletions modules/tv/tmpl/default/recorded.php
Expand Up @@ -234,6 +234,8 @@
echo '<img src="'.skin_url.'/img/flags/bookmark.png" title="'.t('has Bookmark').'" alt="">';
if ($show->is_watched)
echo '<img src="'.skin_url.'/img/flags/watched.png" title="'.t('Watched').'" alt="">';
if ($show->is_transcoded)
echo '<img src="'.skin_url.'/img/flags/transcoded.png" title="'.t('Transcoded').'" alt="">';
?></td>
</tr><?php
$prev_group = $cur_group;
Expand Down
Binary file added skins/clean_blue/img/flags/transcoded.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added skins/default/img/flags/transcoded.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added skins/elkin/img/flags/transcoded.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added skins/grey/img/flags/transcoded.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit af2d75e

Please sign in to comment.