diff options
author | friendica <info@friendica.com> | 2012-08-30 22:42:51 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-08-30 22:42:51 -0700 |
commit | 4736fa5927b35ebd0b2fc337e9f4a3d1e1e0af0d (patch) | |
tree | 958c66211db81e27ab0bf77304a0763c900f2b45 /mod/install.php | |
parent | 80bd128425b99d91ddca897bc2cd6dcef5268fe4 (diff) | |
download | volse-hubzilla-4736fa5927b35ebd0b2fc337e9f4a3d1e1e0af0d.tar.gz volse-hubzilla-4736fa5927b35ebd0b2fc337e9f4a3d1e1e0af0d.tar.bz2 volse-hubzilla-4736fa5927b35ebd0b2fc337e9f4a3d1e1e0af0d.zip |
begin channel management (was "manage") page, use term "channel" instead of the vague and hard to explain "identity"
Diffstat (limited to 'mod/install.php')
-rwxr-xr-x | mod/install.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mod/install.php b/mod/install.php index 4e4631b85..eff408964 100755 --- a/mod/install.php +++ b/mod/install.php @@ -114,7 +114,7 @@ function install_content(&$a) { global $install_wizard_pass, $db; $o = ''; $wizard_status = ""; - $install_title = t('Friendica Social Communications Server - Setup'); + $install_title = t('Friendica Red Communications Server - Setup'); @@ -233,6 +233,7 @@ function install_content(&$a) { '$dbuser' => array('dbuser', t('Database Login Name'), $dbuser, ''), '$dbpass' => array('dbpass', t('Database Login Password'), $dbpass, ''), '$dbdata' => array('dbdata', t('Database Name'), $dbdata, ''), + '$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.')), @@ -387,7 +388,7 @@ function check_funcs(&$checks) { $ck_funcs[0]['status']= false; $ck_funcs[0]['help']= t('Error: libCURL PHP module required but not installed.'); } - if(! function_exists('imagecreatefromjpeg')){ +x if(! function_exists('imagecreatefromjpeg')){ $ck_funcs[1]['status']= false; $ck_funcs[1]['help']= t('Error: GD graphics PHP module with JPEG support required but not installed.'); } @@ -406,8 +407,7 @@ function check_funcs(&$checks) { $checks = array_merge($checks, $ck_funcs); - /*if((x($_SESSION,'sysmsg')) && is_array($_SESSION['sysmsg']) && count($_SESSION['sysmsg'])) - notice( t('Please see the file "INSTALL.txt".') . EOL);*/ + } @@ -488,7 +488,7 @@ function what_next() { ."<p>".t('IMPORTANT: You will need to [manually] setup a scheduled task for the poller.') .t('Please see the file "INSTALL.txt".') ."</p><p>" - .t("Go to your new Firendica node <a href='$baseurl/register'>registration page</a> and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel.") + .t("Go to your new Friendica node <a href='$baseurl/register'>registration page</a> and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel.") ."</p>"; } |