Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cydrobolt/polr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChaoyi Zha <summermontreal@gmail.com>2015-09-17 01:43:09 +0300
committerChaoyi Zha <summermontreal@gmail.com>2015-09-17 01:43:09 +0300
commitb914c763783375ce22a2748a1c1a06637ccc3808 (patch)
treead40b24cb91504f1c36f7bdf0aa83b8f22908985
parentd225742dcce2ebee05c1e900323b2118ed4638d7 (diff)
Refactor to reduce repetition
-rw-r--r--setup.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/setup.php b/setup.php
index 6a5b949..5ec4be5 100644
--- a/setup.php
+++ b/setup.php
@@ -81,6 +81,7 @@
}
$nowdate = date('F d Y');
+ $site_theme = $_POST['t'];
$data = '<?php
$host="' . $_POST['dbserver'] . '";'
. '$user="' . $_POST['dbuser'] . '";'
@@ -95,7 +96,7 @@
. '$path = "' . $_POST['path'] . "\";"
. '$fpass = ' . $_POST['fpass'] . ";"
. '$li_shorten_only = ' . $_POST['li_shorten_only'] . ";"
- . '$theme = "' . $_POST['t'] . "\";"
+ . '$theme = "' . $site_theme . "\";"
. '$ip = ' . $_POST['ipfetch'] . ";"
. '$li_show_front = ' . $_POST['li_show_front'] . ";"
. '$unstr = "' . $rstr . '";';
@@ -141,7 +142,7 @@
if (fwrite($handle, $data) === FALSE) {
echo "Can not write to (" . $file . ")";
}
- $data = "# Polr **experimental** nginx configuration. Append this to your nginx config for effect.
+ $data = "# Polr experimental nginx configuration. Append this to your nginx config for effect.
# If you use Apache, ignore this file.
# Try `/etc/nginx/config.d/` if you have trouble finding the configuration
server {
@@ -238,7 +239,7 @@
);');
$acctpass = hashpass($_POST['acctpass']);
$nr = sha1(rstr(50));
- sqlrun("INSERT INTO auth (username,email,password,rkey,valid,role,theme,ip) VALUES ('{$_POST['acct']}','{$_POST['acctemail']}','{$acctpass}','{$nr}','1','adm','{$_POST['t']}','{$ip}') ");
+ sqlrun("INSERT INTO auth (username,email,password,rkey,valid,role,theme,ip) VALUES ('{$_POST['acct']}','{$_POST['acctemail']}','{$acctpass}','{$nr}','1','adm','{$site_theme}','{$ip}') ");
echo "You are now finished Polr Setup. You can now close this window, and login to your account <a href='index.php'>here</a> (login form @ top right). <br><br>If you need help, click <a href=\"http://webchat.freenode.net/?channels=#polr\">here</a><br>"
. "<br><br><b>Clueless? Read the docs. <a href='https://github.com/Cydrobolt/polr/blob/master/README.md'>https://github.com/Cydrobolt/polr/blob/master/README.md</a></b>";
} else {