diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-30 19:49:39 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-30 19:49:39 +0000 |
commit | 3267cf14b9fa2ffdf1918fe68dd067ee932a5867 (patch) | |
tree | 4f9ff7f027b61d52f5620943ccd66a22ee1a796d /templates/show_install_config.inc.php | |
parent | 96d7639ca1e320019e870c109e42f0618c16cf6b (diff) | |
download | ampache-3267cf14b9fa2ffdf1918fe68dd067ee932a5867.tar.gz ampache-3267cf14b9fa2ffdf1918fe68dd067ee932a5867.tar.bz2 ampache-3267cf14b9fa2ffdf1918fe68dd067ee932a5867.zip |
sync from branch
Diffstat (limited to 'templates/show_install_config.inc.php')
-rw-r--r-- | templates/show_install_config.inc.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/show_install_config.inc.php b/templates/show_install_config.inc.php index 2c8f630c..43c55c3b 100644 --- a/templates/show_install_config.inc.php +++ b/templates/show_install_config.inc.php @@ -1,7 +1,7 @@ <?php /* - Copyright (c) 2001 - 2007 Ampache.org + Copyright (c) Ampache.org All rights reserved. This program is free software; you can redistribute it and/or @@ -55,7 +55,7 @@ if (INSTALL != '1') { exit; } <?php Error::display('general'); ?> <br /> <span class="header2"><?php echo _('Generate Config File'); ?></span> - <form method="post" action="<?php echo $_SERVER['PHP_SELF'] . "?action=create_config"; ?>" enctype="multipart/form-data" > + <form method="post" action="<?php echo WEB_PATH . "?action=create_config"; ?>" enctype="multipart/form-data" > <table> <tr> <td class="align"><?php echo _('Web Path'); ?></td> @@ -123,13 +123,13 @@ if (INSTALL != '1') { exit; } <tr> <td> </td> <td> - <?php $check_url = $GLOBALS['php_self'] . "?action=show_create_config&htmllang=$htmllang&charset=$charset&local_db=" . $_REQUEST['local_db'] . "&local_host=" . $_REQUEST['local_host']; ?> + <?php $check_url = WEB_PATH . "?action=show_create_config&htmllang=$htmllang&charset=$charset&local_db=" . $_REQUEST['local_db'] . "&local_host=" . $_REQUEST['local_host']; ?> <a href="<?php echo $check_url; ?>">[<?php echo _('Check for Config'); ?>]</a> </td> </tr> </table> <br /> - <form method="post" action="<?php echo $GLOBALS['php_self'] . "?action=show_create_account&htmllang=$htmllang&charset=$charset"; ?>" enctype="multipart/form-data"> + <form method="post" action="<?php echo WEB_PATH . "?action=show_create_account&htmllang=$htmllang&charset=$charset"; ?>" enctype="multipart/form-data"> <input type="submit" value="<?php echo _('Continue to Step 3'); ?>" /> </form> </div> |