diff options
author | Simon <simon@kisikew.org> | 2012-03-14 08:02:04 -0700 |
---|---|---|
committer | Simon <simon@kisikew.org> | 2012-03-14 08:02:04 -0700 |
commit | c95deb48398a23de68a3d438b5fffeaea3f3fa01 (patch) | |
tree | f9e7d080dd0e32d876cb07409b4f8dc1b550b10b /view/theme/dispy-dark/profile_vcard.tpl | |
parent | f03c57007a2a9ec73902acfb2d951528e68e3117 (diff) | |
parent | 0bf9595ab19f3af772d20a88eac86dc8cf962c3e (diff) | |
download | volse-hubzilla-c95deb48398a23de68a3d438b5fffeaea3f3fa01.tar.gz volse-hubzilla-c95deb48398a23de68a3d438b5fffeaea3f3fa01.tar.bz2 volse-hubzilla-c95deb48398a23de68a3d438b5fffeaea3f3fa01.zip |
Merge pull request #134 from simonlnu/master
PHP Fatal error: Call-time pass-by-reference has been removed in mod/item.php on line 630
Diffstat (limited to 'view/theme/dispy-dark/profile_vcard.tpl')
-rw-r--r-- | view/theme/dispy-dark/profile_vcard.tpl | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/view/theme/dispy-dark/profile_vcard.tpl b/view/theme/dispy-dark/profile_vcard.tpl index 0c289d982..5cb567f5a 100644 --- a/view/theme/dispy-dark/profile_vcard.tpl +++ b/view/theme/dispy-dark/profile_vcard.tpl @@ -6,13 +6,17 @@ <div class="title">$profile.pdesc</div> {{ endif }} <div id="profile-photo-wrapper"> - <img class="photo" width="175" height="175" src="$profile.photo" alt="$profile.name" /> + <img class="photo" width="175" height="175" src="$profile.photo" alt="$profile.name" /> + <div class="profile-edit-side-div"> + <a class="profile-edit-side-link icon edit" title="$profile.$editprofile" href="profiles/$profile.id" ></a> + </div> + <div class="clear"></div> </div> {{ if $location }} <div class="location"> <span class="location-label">$location</span> - <div class="adr"> + <address class="adr"> {{ if $profile.address }} <div class="street-address">$profile.address</div>{{ endif }} <span class="city-state-zip">$profile.zip</span> @@ -20,7 +24,7 @@ <span class="region">$profile.region</span> <span class="postal-code">$profile.postal-code</span> {{ if $profile.country-name }}<span class="country-name">$profile.country-name</span>{{ endif }} - </div> + </address> </div> {{ endif }} |