X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Finstall.php;h=6db79dca286b6b25aba7a3bcb706e58ca93e7149;hb=8bdc906013461464b475c4f10918adff8730dea6;hp=382fcefd76a7564401fc16d3011fd10b0c9c9fa2;hpb=9ca789b9529dceedc35f637804179e1034b3f1d9;p=friendica.git diff --git a/mod/install.php b/mod/install.php index 382fcefd76..6db79dca28 100755 --- a/mod/install.php +++ b/mod/install.php @@ -4,7 +4,7 @@ require_once "include/Photo.php"; $install_wizard_pass=1; -function install_init(App &$a){ +function install_init(App $a) { // $baseurl/install/testrwrite to test if rewite in .htaccess is working if ($a->argc==2 && $a->argv[1]=="testrewrite") { @@ -24,7 +24,7 @@ function install_init(App &$a){ } -function install_post(App &$a) { +function install_post(App $a) { global $install_wizard_pass, $db; switch($install_wizard_pass) { @@ -132,7 +132,7 @@ function get_db_errno() { } } -function install_content(App &$a) { +function install_content(App $a) { global $install_wizard_pass, $db; $o = ''; @@ -261,7 +261,7 @@ function install_content(App &$a) { '$dbhost' => array('dbhost', t('Database Server Name'), $dbhost, '', 'required'), '$dbuser' => array('dbuser', t('Database Login Name'), $dbuser, '', 'required', 'autofocus'), - '$dbpass' => array('dbpass', t('Database Login Password'), $dbpass, '', 'required'), + '$dbpass' => array('dbpass', t('Database Login Password'), $dbpass, t("For security reasons the password must not be empty"), 'required'), '$dbdata' => array('dbdata', t('Database Name'), $dbdata, '', 'required'), '$adminmail' => array('adminmail', t('Site administrator email address'), $adminmail, t('Your account email address must match this in order to use the web admin panel.'), 'required', 'autofocus', 'email'), @@ -484,9 +484,6 @@ function check_funcs(&$checks) { $ck_funcs[6]['status'] = false; $ck_funcs[6]['help'] = t('Error, XML PHP module required but not installed.'); } - - /*if((x($_SESSION,'sysmsg')) && is_array($_SESSION['sysmsg']) && count($_SESSION['sysmsg'])) - notice( t('Please see the file "INSTALL.txt".') . EOL);*/ } @@ -565,7 +562,7 @@ function check_imagik(&$checks) { } } -function manual_config(App &$a) { +function manual_config(App $a) { $data = htmlentities($a->data['txt'],ENT_COMPAT,'UTF-8'); $o = t('The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.'); $o .= "";