]> git.mxchange.org Git - friendica.git/blobdiff - mod/install.php
Fix indent in search_item.tpl
[friendica.git] / mod / install.php
index 382fcefd76a7564401fc16d3011fd10b0c9c9fa2..fa952a79bc4b47ddefb3eee7a33cec0fcaa56aec 100755 (executable)
@@ -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'),
 
@@ -565,7 +565,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 .= "<textarea rows=\"24\" cols=\"80\" >$data</textarea>";