diff options
| -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>"; |
