diff --git a/mod/contacts.php b/mod/contacts.php
index c1455ec54d..aee6548fe6 100644
--- a/mod/contacts.php
+++ b/mod/contacts.php
@@ -9,7 +9,10 @@ function contacts_init(&$a) {
$a->page['aside'] .= group_side();
if($a->config['register_policy'] != REGISTER_CLOSED)
- $a->page['aside'] .= '
';
+ $a->page['aside'] .= '';
+
+ if(strlen(get_config('system','directory_submit_url')))
+ $a->page['aside'] .= '';
$tpl = load_view_file('view/follow.tpl');
$a->page['aside'] .= replace_macros($tpl,array(
@@ -18,6 +21,8 @@ function contacts_init(&$a) {
'$follow' => t('Follow')
));
+
+
}
function contacts_post(&$a) {
diff --git a/mod/match.php b/mod/match.php
index f3c78bc7dc..7228529d74 100644
--- a/mod/match.php
+++ b/mod/match.php
@@ -7,7 +7,7 @@ function match_content(&$a) {
if(! local_user())
return;
- $o .= '' . t('Profile Keyword Match') . '
';
+ $o .= '' . t('Profile Match') . '
';
$r = q("SELECT `pub_keywords`, `prv_keywords` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
intval(local_user())
diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css
index db73886e2f..4f6d6c196c 100644
--- a/view/theme/duepuntozero/style.css
+++ b/view/theme/duepuntozero/style.css
@@ -2154,7 +2154,7 @@ a.mail-list-link {
float: left;
text-align: center;
width: 120px;
- overflow: clip;
+ overflow: hidden;
}
.profile-match-break,
@@ -2162,3 +2162,6 @@ a.mail-list-link {
clear: both;
}
+.side-link {
+ margin-bottom: 15px;
+}
diff --git a/view/theme/loozah/style.css b/view/theme/loozah/style.css
index 69dee0dc9a..49c83c83c4 100644
--- a/view/theme/loozah/style.css
+++ b/view/theme/loozah/style.css
@@ -2180,7 +2180,7 @@ a.mail-list-link {
float: left;
text-align: center;
width: 120px;
- overflow: clip;
+ overflow: hidden;
}
.profile-match-break,
@@ -2188,3 +2188,6 @@ a.mail-list-link {
clear: both;
}
+.side-link {
+ margin-bottom: 15px;
+}