1
0
Fork 0

Merge pull request #2099 from rabuzarus/2611_new_user_addr

generate addr for new registered users
This commit is contained in:
Michael Vogel 2015-11-27 21:35:46 +01:00
commit 3b6d3d1ade
15 changed files with 89 additions and 68 deletions

View file

@ -2511,7 +2511,8 @@ aside input[type='text'] {
font-weight: bold;
}
.vcard .title {
.vcard .title,
.vcard .p-faddr {
margin-bottom: 5px;
margin-left: 12px;
}

View file

@ -3,7 +3,7 @@
<div class="fn label">{{$profile.name}}</div>
{{if $profile.faddr}}<div class="p-faddr">{{$profile.faddr}}</div>{{/if}}
{{if $pdesc}}<div class="title">{{$profile.pdesc}}</div>{{/if}}
<div id="profile-photo-wrapper"><img class="photo" width="175" height="175" src="{{$profile.photo}}?rev={{$profile.picdate}}" alt="{{$profile.name}}"></div>
@ -38,12 +38,12 @@
<div id="profile-extra-links">
<ul>
{{if $connect}}
{{if $remoteconnect}}
<li><a id="dfrn-request-link" href="{{$remoteconnect}}">{{$connect}}</a></li>
{{else}}
<li><a id="dfrn-request-link" href="dfrn_request/{{$profile.nickname}}">{{$connect}}</a></li>
{{/if}}
{{/if}}
{{if $remoteconnect}}
<li><a id="dfrn-request-link" href="{{$remoteconnect}}">{{$connect}}</a></li>
{{else}}
<li><a id="dfrn-request-link" href="dfrn_request/{{$profile.nickname}}">{{$connect}}</a></li>
{{/if}}
{{/if}}
{{if $wallmessage}}
<li><a id="wallmessage-link" href="wallmessage/{{$profile.nickname}}">{{$wallmessage}}</a></li>
{{/if}}