diff options
author | Friendika <info@friendika.com> | 2010-12-20 14:21:12 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-20 14:21:12 -0800 |
commit | 1a9f8eacc4bc2b7a67894018b63fc7b0864d760a (patch) | |
tree | 0ba9a55b6a5a897bd42cee4e3b5d7a71def9490f /boot.php | |
parent | 0ff3ae55872cb911b48a3f780545940ec7f8b0fe (diff) | |
download | volse-hubzilla-1a9f8eacc4bc2b7a67894018b63fc7b0864d760a.tar.gz volse-hubzilla-1a9f8eacc4bc2b7a67894018b63fc7b0864d760a.tar.bz2 volse-hubzilla-1a9f8eacc4bc2b7a67894018b63fc7b0864d760a.zip |
missing key
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1924,7 +1924,7 @@ function profile_sidebar($profile) { $gender = ((x($profile,'gender') == 1) ? '<div class="mf"><span class="gender-label">' . t('Gender:') . '</span> <span class="x-gender">' . $profile['gender'] . '</span></div><div class="profile-clear"></div>' : ''); - $pubkey = ((x($profile,'key') == 1) ? '<div class="key" style="display:none;">' . $profile['pubkey'] . '</div>' : ''); + $pubkey = ((x($profile,'pubkey') == 1) ? '<div class="key" style="display:none;">' . $profile['pubkey'] . '</div>' : ''); $marital = ((x($profile,'marital') == 1) ? '<div class="marital"><span class="marital-label"><span class="heart">♥</span> ' . t('Status:') . ' </span><span class="marital-text">' . $profile['marital'] . '</span></div></div><div class="profile-clear"></div>' : ''); |