diff options
| author | 2010-05-23 16:21:32 +0200 | |
|---|---|---|
| committer | 2010-05-23 16:21:32 +0200 | |
| commit | 4031ecf083ea361b1a26fd2f6efb71663ccd9af3 (patch) | |
| tree | 5cce182fda7057c53fdb9cb52ee7d8f1149533ab /web | |
| parent | Restore audio track selection, but only for one audio track and no auto selection. (diff) | |
| download | AnyLoader-4031ecf083ea361b1a26fd2f6efb71663ccd9af3.tar.xz AnyLoader-4031ecf083ea361b1a26fd2f6efb71663ccd9af3.zip | |
Disambiguation of messages.
Diffstat (limited to 'web')
| -rw-r--r-- | web/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/index.php b/web/index.php index 122bf46..cbf9804 100644 --- a/web/index.php +++ b/web/index.php @@ -63,7 +63,7 @@ foreach ($loader->getTitles() as $title) { if ($title->videoTrack == 0) echo "(not yet selected)"; else - echo "Title ".$title->videoTrack; + echo "Video Title ".$title->videoTrack; if (!$title->hasEncoded && $encodeStatus[0] != $title->title) { echo "</a>"; if ($title->videoTrack != 0) @@ -75,7 +75,7 @@ foreach ($loader->getTitles() as $title) { if ($title->audioTrack == 0) echo "(not yet selected)"; else - echo "Track ".$title->audioTrack; + echo "Audio Track ".$title->audioTrack; if (!$title->hasEncoded && $encodeStatus[0] != $title->title) echo "</a>"; echo "</td></tr>"; |
