diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-04-15 16:47:57 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-04-15 16:47:57 -0400 |
commit | 8033c8b7a712a1f363f7e59c844c42214e8424f6 (patch) | |
tree | cd1829ed1751b7851270d59a543e66fbcea324f6 | |
parent | 1113d91bf17c43efcd49fdebd225b4ed4e2ab6fa (diff) | |
download | ampache-8033c8b7a712a1f363f7e59c844c42214e8424f6.tar.gz ampache-8033c8b7a712a1f363f7e59c844c42214e8424f6.tar.bz2 ampache-8033c8b7a712a1f363f7e59c844c42214e8424f6.zip |
Cosmetics: html5_player.php
Correct vim modeline. Remove useless switch.
-rwxr-xr-x | docs/CHANGELOG.md | 3 | ||||
-rw-r--r-- | html5_player.php | 10 |
2 files changed, 5 insertions, 8 deletions
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index dcb7f57d..6d4339f1 100755 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,9 @@ CHANGELOG ========= +3.6-FUTURE +---------- + 3.6-alpha5 *2013-04-15* ---------------------- - Fixed persistent XSS vulnerability in user self-editing (reported by diff --git a/html5_player.php b/html5_player.php index d740f15a..bf11fa72 100644 --- a/html5_player.php +++ b/html5_player.php @@ -1,5 +1,5 @@ <?php -/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */ +/* vim:set softtabstop=4 shiftwidth=4 expandtab: */ /** * * LICENSE: GNU General Public License, version 2 (GPLv2) @@ -22,12 +22,6 @@ require_once 'lib/init.php'; -// Switch on actions -switch ($_REQUEST['action']) { - default: - require_once Config::get('prefix') . '/templates/show_html5_player.inc.php'; - break; -} // end switch - +require_once Config::get('prefix') . '/templates/show_html5_player.inc.php'; ?> |