diff options
Diffstat (limited to 'templates/show_install_lang.inc.php')
-rw-r--r-- | templates/show_install_lang.inc.php | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/templates/show_install_lang.inc.php b/templates/show_install_lang.inc.php index b90b6712..63e3290e 100644 --- a/templates/show_install_lang.inc.php +++ b/templates/show_install_lang.inc.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) @@ -25,16 +25,16 @@ require $prefix . '/templates/install_header.inc.php'; ?> <?php require_once 'templates/show_install_check.inc.php'; ?> <?php if (Error::occurred()) { ?> - <div class="content"> - <span class="fatalerror"><?php echo T_('Minimum requirements not met. Unable to install Ampache.'); ?></span> - </div> + <div class="content"> + <span class="fatalerror"><?php echo T_('Minimum requirements not met. Unable to install Ampache.'); ?></span> + </div> <?php } ?> <div class="content"> - <strong><?php echo T_('Choose Installation Language'); ?></strong> - <p> - <?php Error::display('general'); ?> - </p> + <strong><?php echo T_('Choose Installation Language'); ?></strong> + <p> + <?php Error::display('general'); ?> + </p> <form method="post" action="<?php echo WEB_PATH . "?action=init"; ?>" enctype="multipart/form-data" > <?php @@ -45,20 +45,20 @@ ${$var_name} = "selected=\"selected\""; echo "<select name=\"htmllang\">\n"; foreach ($languages as $lang=>$name) { - $var_name = $lang . "_lang"; + $var_name = $lang . "_lang"; - echo "\t<option value=\"$lang\" " . ${$var_name} . ">$name</option>\n"; + echo "\t<option value=\"$lang\" " . ${$var_name} . ">$name</option>\n"; } // end foreach echo "</select>\n"; ?> <input type="submit" value="<?php echo T_('Start configuration'); ?>" /> - </form> - </div> - <div id="bottom"> - <p><strong>Ampache Installation.</strong><br /> - For the love of Music.</p> + </form> + </div> + <div id="bottom"> + <p><strong>Ampache Installation.</strong><br /> + For the love of Music.</p> </div> </div> |