diff options
author | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-03-14 20:14:52 +0000 |
---|---|---|
committer | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-03-14 20:14:52 +0000 |
commit | 1cb0983ed04c65e06d502ae2ac9ed6d5e31d70dc (patch) | |
tree | 54655ff3e692a71a17f1d37cd97374b263557ca1 /templates/show_install_config.inc.php | |
parent | ef48bf3fbdca2a4d25f5d025f4c6ad23905e5369 (diff) | |
download | ampache-1cb0983ed04c65e06d502ae2ac9ed6d5e31d70dc.tar.gz ampache-1cb0983ed04c65e06d502ae2ac9ed6d5e31d70dc.tar.bz2 ampache-1cb0983ed04c65e06d502ae2ac9ed6d5e31d70dc.zip |
Cosmetics: remove trailing whitespace
Diffstat (limited to 'templates/show_install_config.inc.php')
-rw-r--r-- | templates/show_install_config.inc.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/templates/show_install_config.inc.php b/templates/show_install_config.inc.php index cbfc7cfd..4ab55bda 100644 --- a/templates/show_install_config.inc.php +++ b/templates/show_install_config.inc.php @@ -20,7 +20,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -if (INSTALL != '1') { exit; } +if (INSTALL != '1') { exit; } $prefix = realpath(dirname(__FILE__). "/../"); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> @@ -31,7 +31,7 @@ $prefix = realpath(dirname(__FILE__). "/../"); <meta http-equiv="Content-Type" content="text/html; Charset=<?php echo $charset; ?>" /> </head> <body> -<div id="header"> +<div id="header"> <h1><?php echo _('Ampache Installation'); ?></h1> <p>Pour l'Amour de la Musique</p> </div> @@ -92,13 +92,13 @@ $prefix = realpath(dirname(__FILE__). "/../"); <table> <tr> <td class="align"><?php echo _('Ampache.cfg.php Exists'); ?></td> - <td>[ + <td>[ <?php if (!is_readable($configfile)) { - echo debug_result('',false); + echo debug_result('',false); } else { - echo debug_result('',true); + echo debug_result('',true); } ?> ] @@ -108,14 +108,14 @@ $prefix = realpath(dirname(__FILE__). "/../"); <td class="align"> <?php echo _('Ampache.cfg.php Configured?'); ?> </td> - <td>[ + <td>[ <?php $results = @parse_ini_file($configfile); - if (!check_config_values($results)) { - echo debug_result('',false); + if (!check_config_values($results)) { + echo debug_result('',false); } else { - echo debug_result('',true); + echo debug_result('',true); } ?> ] |