From ef4d3660605efc7f1328d4533b0f4bfb6c1107e2 Mon Sep 17 00:00:00 2001 From: Paul Arthur Date: Sat, 26 Jan 2013 03:00:32 -0500 Subject: Cosmetics: death to tabs The refactoring I've been doing has reminded me of my strong preference for spaces, and I feel inclined to impose my will on the tree. --- song.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'song.php') diff --git a/song.php b/song.php index 2170616d..96467128 100644 --- a/song.php +++ b/song.php @@ -1,5 +1,5 @@ format(); - $song->fill_ext_info(); - require_once Config::get('prefix') . '/templates/show_song.inc.php'; - break; + default: + case 'show_song': + $song = new Song($_REQUEST['song_id']); + $song->format(); + $song->fill_ext_info(); + require_once Config::get('prefix') . '/templates/show_song.inc.php'; + break; } // end data collection UI::show_footer(); -- cgit