aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorredmatrix <mike@macgirvin.com>2016-09-29 19:17:09 -0700
committerredmatrix <mike@macgirvin.com>2016-09-29 19:17:09 -0700
commit07df5833becc2bc54823997c040997d56f0ae2cb (patch)
treeb33ee22b793a8665f44d26cc2459b8009dcac2b9
parent2728cdaf2382ed64942f6a0761279f2fde55375f (diff)
downloadvolse-hubzilla-07df5833becc2bc54823997c040997d56f0ae2cb.tar.gz
volse-hubzilla-07df5833becc2bc54823997c040997d56f0ae2cb.tar.bz2
volse-hubzilla-07df5833becc2bc54823997c040997d56f0ae2cb.zip
more tag filtering in setup
-rw-r--r--Zotlabs/Module/Setup.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php
index 9945754a9..88481b4b1 100644
--- a/Zotlabs/Module/Setup.php
+++ b/Zotlabs/Module/Setup.php
@@ -94,17 +94,17 @@ class Setup extends \Zotlabs\Web\Controller {
// implied break;
case 4:
$urlpath = \App::get_path();
- $dbhost = notags(trim($_POST['dbhost']));
- $dbport = intval(notags(trim($_POST['dbport'])));
- $dbuser = notags(trim($_POST['dbuser']));
- $dbpass = notags(trim($_POST['dbpass']));
- $dbdata = notags(trim($_POST['dbdata']));
- $dbtype = intval(notags(trim($_POST['dbtype'])));
- $phpath = notags(trim($_POST['phpath']));
- $timezone = notags(trim($_POST['timezone']));
- $adminmail = notags(trim($_POST['adminmail']));
- $siteurl = notags(trim($_POST['siteurl']));
- $server_role = notags(trim($_POST['server_role']));
+ $dbhost = trim($_POST['dbhost']);
+ $dbport = intval(trim($_POST['dbport']));
+ $dbuser = trim($_POST['dbuser']);
+ $dbpass = trim($_POST['dbpass']);
+ $dbdata = trim($_POST['dbdata']);
+ $dbtype = intval(trim($_POST['dbtype']));
+ $phpath = trim($_POST['phpath']);
+ $timezone = trim($_POST['timezone']);
+ $adminmail = trim($_POST['adminmail']);
+ $siteurl = trim($_POST['siteurl']);
+ $server_role = trim($_POST['server_role']);
if(! $server_role)
$server_role = 'standard';