From c6b8ab534f4516605ed276b9f8677f9cf578ea45 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 6 Dec 2012 00:03:24 -0800 Subject: fixed several little nit bugs that cropped up during deployment --- boot.php | 18 ++++++++++++------ include/account.php | 2 +- include/cli_startup.php | 2 +- include/gprobe.php | 2 +- include/onepoll.php | 2 +- include/poller.php | 2 +- view/en/register_open_eml.tpl | 30 +++++++----------------------- view/theme/redbasic/css/style.css | 6 ++++-- view/tpl/nav.tpl | 31 ++++++++++++++++--------------- 9 files changed, 44 insertions(+), 51 deletions(-) diff --git a/boot.php b/boot.php index 3d7401ba0..36fa535b1 100644 --- a/boot.php +++ b/boot.php @@ -626,6 +626,12 @@ if(! class_exists('App')) { } function set_baseurl($url) { + + if(is_array($this->config) && array_key_exists('system',$this->config) && + array_key_exists('baseurl',$this->config['system']) && strlen($this->config['system']['baseurl'])) { + $url = $a->config['system']['baseurl']; + } + $parsed = @parse_url($url); $this->baseurl = $url; @@ -860,13 +866,13 @@ function is_ajax() { if(! function_exists('check_config')) { - function check_config(&$a) { +function check_config(&$a) { $build = get_config('system','build'); if(! x($build)) $build = set_config('system','build',DB_UPDATE_VERSION); - $url = get_config('system','url'); +// $url = get_config('system','baseurl'); // if the url isn't set or the stored url is radically different // than the currently visited url, store the current value accordingly. @@ -874,10 +880,10 @@ if(! function_exists('check_config')) { // and www.example.com vs example.com. // We will only change the url to an ip address if there is no existing setting - if(! x($url)) - $url = set_config('system','url',$a->get_baseurl()); - if((! link_compare($url,$a->get_baseurl())) && (! preg_match("/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/",$a->get_hostname))) - $url = set_config('system','url',$a->get_baseurl()); +// if(! x($url)) +// $url = set_config('system','baseurl',$a->get_baseurl()); +// if((! link_compare($url,$a->get_baseurl())) && (! preg_match("/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/",$a->get_hostname))) +// $url = set_config('system','baseurl',$a->get_baseurl()); diff --git a/include/account.php b/include/account.php index b850fcffd..9f967f2c3 100644 --- a/include/account.php +++ b/include/account.php @@ -263,7 +263,7 @@ function send_verification_email($email,$password) { '$password' => $password, )); - $res = mail($email, sprintf( t('Registration details for %s'), get_config('config','sitename')), + $res = mail($email, sprintf( t('Registration details for %s'), get_config('system','sitename')), $email_msg, 'From: ' . t('Administrator') . '@' . get_app()->get_hostname() . "\n" . 'Content-type: text/plain; charset=UTF-8' . "\n" diff --git a/include/cli_startup.php b/include/cli_startup.php index 589696b85..d9f6ecb8e 100644 --- a/include/cli_startup.php +++ b/include/cli_startup.php @@ -24,7 +24,7 @@ function cli_startup() { load_config('config'); load_config('system'); - $a->set_baseurl(get_config('system','url')); + $a->set_baseurl(get_config('system','baseurl')); load_hooks(); diff --git a/include/gprobe.php b/include/gprobe.php index dd6f676bf..377d40209 100644 --- a/include/gprobe.php +++ b/include/gprobe.php @@ -24,7 +24,7 @@ function gprobe_run($argv, $argc){ load_config('config'); load_config('system'); - $a->set_baseurl(get_config('system','url')); + $a->set_baseurl(get_config('system','baseurl')); load_hooks(); diff --git a/include/onepoll.php b/include/onepoll.php index f6f266165..1ac38823a 100644 --- a/include/onepoll.php +++ b/include/onepoll.php @@ -29,7 +29,7 @@ function onepoll_run($argv, $argc){ load_config('config'); load_config('system'); - $a->set_baseurl(get_config('system','url')); + $a->set_baseurl(get_config('system','baseurl')); load_hooks(); diff --git a/include/poller.php b/include/poller.php index 5e5d211e4..595cadafe 100644 --- a/include/poller.php +++ b/include/poller.php @@ -40,7 +40,7 @@ function poller_run($argv, $argc){ } - $a->set_baseurl(get_config('system','url')); + $a->set_baseurl(get_config('system','baseurl')); load_hooks(); diff --git a/view/en/register_open_eml.tpl b/view/en/register_open_eml.tpl index c55ac1e7e..68c4a722b 100644 --- a/view/en/register_open_eml.tpl +++ b/view/en/register_open_eml.tpl @@ -1,32 +1,16 @@ -Dear $[username], - Thank you for registering at $[sitename]. Your account has been created. +An account has been created at $[sitename] for this email address. The login details are as follows: - Site Location: $[siteurl] -Login Name: $[email] -Password: $[password] - -You may change your password from your account "Settings" page after logging -in. - -Please take a few moments to review the other account settings on that page. - -You may also wish to add some basic information to your default profile -(on the "Profiles" page) so that other people can easily find you. - -We recommend setting your full name, adding a profile photo, -adding some profile "keywords" (very useful in making new friends) - and -perhaps what country you live in; if you do not wish to be more specific -than that. - -We fully respect your right to privacy, and none of these items are necessary. -If you are new and do not know anybody here, they may help -you to make some new and interesting friends. +Login: $[email] +Password: $[password] +If this account was created without your knowledge and is not desired, please +login and remove the account from the links on the Settings page, and we +apologise for any inconvenience. -Thank you and welcome to $[sitename]. +Thank you and welcome. Sincerely, $[sitename] Administrator diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 7dbea7acf..afe2f8979 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -409,13 +409,13 @@ div.wall-item-content-wrapper.shiny { margin-bottom: 25px; } -#label-register-name, #label-register-email, #label-register-nickname, #label-register-openid { +#label-register-name, #label-register-nickname, #label-register-openid { float: left; width: 350px; margin-top: 10px; } -#register-name, #register-email, #register-nickname { +#register-name, #register-nickname { float: left; margin-top: 10px; width: 150px; @@ -659,6 +659,7 @@ input#dfrn-url { .profile-edit-side-link { opacity: 0.3; filter:alpha(opacity=30); + float: right; } .profile-edit-side-link:hover { opacity: 1.0; @@ -3552,6 +3553,7 @@ nav #nav-help-link, nav #nav-search-link, nav #nav-directory-link, nav #nav-apps-link, +nav #nav-user-linkmenu, nav #nav-site-linkmenu { float: right; } diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index 5e909e172..234b20854 100644 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -10,21 +10,6 @@ {{ endif }} - {{ if $userinfo }} - - {{ endif }} {{ if $nav.network }} + {{ if $userinfo }} + + {{ endif }} + {{ if $nav.help }}