diff options
author | momo-i <momo-i@ampache> | 2009-07-13 23:20:51 +0000 |
---|---|---|
committer | momo-i <momo-i@ampache> | 2009-07-13 23:20:51 +0000 |
commit | 584e7e5cd235c0f6d01b4d1ccb9c7d3333c06553 (patch) | |
tree | 6faf34f7240e69f60d5f407741010426abcd3f7d /templates/show_install_config.inc.php | |
parent | 7d63859ce355870942a3f648cff6be57e43451ea (diff) | |
download | ampache-584e7e5cd235c0f6d01b4d1ccb9c7d3333c06553.tar.gz ampache-584e7e5cd235c0f6d01b4d1ccb9c7d3333c06553.tar.bz2 ampache-584e7e5cd235c0f6d01b4d1ccb9c7d3333c06553.zip |
fixed #516
Diffstat (limited to 'templates/show_install_config.inc.php')
-rw-r--r-- | templates/show_install_config.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_install_config.inc.php b/templates/show_install_config.inc.php index 274deac2..7ddf22c0 100644 --- a/templates/show_install_config.inc.php +++ b/templates/show_install_config.inc.php @@ -41,17 +41,17 @@ $prefix = realpath(dirname(__FILE__). "/../"); <br /> <ul> <li><?php echo _("A MySQL Server with a username and password that can create/modify databases"); ?></li> - <li><?php echo sprintf(_("Your webserver has read access to the %s file and the %s file"),$prefix . '/sql/ampache.sql',$prefix . '/config/ampache.cfg.dist'); ?></li> + <li><?php printf(_("Your webserver has read access to the %s file and the %s file"),$prefix . '/sql/ampache.sql',$prefix . '/config/ampache.cfg.dist'); ?></li> </ul> - <?php echo sprintf(_('Once you have ensured that you have the above requirements please fill out the information below. You will only be asked for the required config values. If you would like to make changes to your ampache install at a later date simply edit %s'),$prefix . '/config/ampache.cfg.php'); ?> + <?php printf(_('Once you have ensured that you have the above requirements please fill out the information below. You will only be asked for the required config values. If you would like to make changes to your ampache install at a later date simply edit %s'),$prefix . '/config/ampache.cfg.php'); ?> </div> <div class="content"> <?php echo _("Step 1 - Creating and Inserting the Ampache Database"); ?><br /> <strong><?php echo _("Step 2 - Creating the Ampache.cfg.php file"); ?></strong><br /> <dl> - <dd><?php echo _('This steps takes the basic config values and generates the config file. It will prompt you to download the config file. Please put the downloaded config file in %s'),$prefix . '/config'); ?></dd> + <dd><?php printf(_('This steps takes the basic config values and generates the config file. It will prompt you to download the config file. Please put the downloaded config file in %s'),$prefix.'/config'); ?></dd> </dl> <?php echo _("Step 3 - Setup Initial Account"); ?><br /> <?php Error::display('general'); ?> |