summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2013-01-28 13:32:18 -0500
committerPaul Arthur <paul.arthur@flowerysong.com>2013-01-28 13:32:18 -0500
commitc570bb77947c29a78d9a2ac98e09832be0daac66 (patch)
tree4613cc9bcd67929c6ec50353be6748d697e44b6e
parent2eb41bb99add904f614ad1890e69c4b9f7f4e630 (diff)
downloadampache-c570bb77947c29a78d9a2ac98e09832be0daac66.tar.gz
ampache-c570bb77947c29a78d9a2ac98e09832be0daac66.tar.bz2
ampache-c570bb77947c29a78d9a2ac98e09832be0daac66.zip
Replace mistaken _() with T_()
-rw-r--r--templates/show_playtype_switch.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_playtype_switch.inc.php b/templates/show_playtype_switch.inc.php
index 9debe89b..6ff4c9d3 100644
--- a/templates/show_playtype_switch.inc.php
+++ b/templates/show_playtype_switch.inc.php
@@ -36,7 +36,7 @@ if (Preference::has_access('play_type')) {
<?php } if (Config::get('allow_democratic_playback')) { ?>
<option value="democratic" <?php echo $is_democratic; ?>><?php echo T_('Democratic'); ?></option>
<?php } ?>
- <option value="html5_player" <?php echo $is_html5_player; ?>><?php echo _('HTML5 Player'); ?></option>
+ <option value="html5_player" <?php echo $is_html5_player; ?>><?php echo T_('HTML5 Player'); ?></option>
</select>
<?php echo Ajax::observe('play_type_select','change',Ajax::action('?page=stream&action=set_play_type','play_type_select','play_type_form'),'1'); ?>
</form>