diff options
author | Liam McLoughlin <hexxeh@hexxeh.net> | 2011-07-28 02:12:40 +0100 |
---|---|---|
committer | Liam McLoughlin <hexxeh@hexxeh.net> | 2011-07-28 02:12:40 +0100 |
commit | cb5bbb72d305e53fded087f8df6f35be5d37188e (patch) | |
tree | 25840a3faffd972a90e2f0a8660170bc9fd995c7 | |
parent | Adding USE, package USE, FEATURES and keywords to WebUI (diff) | |
download | gentoaster-cb5bbb72d305e53fded087f8df6f35be5d37188e.tar.gz gentoaster-cb5bbb72d305e53fded087f8df6f35be5d37188e.tar.bz2 gentoaster-cb5bbb72d305e53fded087f8df6f35be5d37188e.zip |
Fix config generation double quoting
-rw-r--r-- | web/process.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/web/process.php b/web/process.php index e0bf38a..b16f272 100644 --- a/web/process.php +++ b/web/process.php @@ -73,10 +73,10 @@ HOSTNAME=$hostname ROOT_PASSWORD=$rootPass DEFAULT_USERNAME=$username DEFAULT_PASSWORD=$password -USE_FLAGS='$use' -PACKAGE_USE='$puse' -FEATURES='$features' -PACKAGE_ACCEPT_KEYWORDS='$keywords' +USE_FLAGS=$use +PACKAGE_USE=$puse +FEATURES=$features +PACKAGE_ACCEPT_KEYWORDS=$keywords PACKAGES_LIST=$packagesList OUTPUT_FORMAT=$outputFormat"; |