summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-12-06 08:55:20 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-12-06 08:55:20 +0000
commit31dd76b26ba3f40677d6c6c7ecef1850a1f1a823 (patch)
tree064370d79cf2e59f4bddf16d43a278082b78f5c4
parent708bb80c7ab181cc439e8a91eb49d0eae282d3c6 (diff)
downloadampache-31dd76b26ba3f40677d6c6c7ecef1850a1f1a823.tar.gz
ampache-31dd76b26ba3f40677d6c6c7ecef1850a1f1a823.tar.bz2
ampache-31dd76b26ba3f40677d6c6c7ecef1850a1f1a823.zip
removed scrub on password case we need to allow crazy crap in it :(
-rw-r--r--install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php
index 849cda5d..e745669f 100644
--- a/install.php
+++ b/install.php
@@ -57,7 +57,7 @@ if (!install_check_status($configfile)) {
$action = scrub_in($_REQUEST['action']);
$web_path = scrub_in($_REQUEST['web_path']);
$username = scrub_in($_REQUEST['local_username']);
-$password = scrub_in($_REQUEST['local_pass']);
+$password = $_REQUEST['local_pass'];
$hostname = scrub_in($_REQUEST['local_host']);
$database = scrub_in($_REQUEST['local_db']);
if ($_SERVER['HTTPS'] == 'on') { $http_type = "https://"; }