Skip to content
This repository has been archived by the owner on Oct 11, 2020. It is now read-only.

Commit

Permalink
Merge pull request #1129 from xillibit/bugs9
Browse files Browse the repository at this point in the history
Add send message next to pm icon
  • Loading branch information
mahagr committed Oct 9, 2012
2 parents 8b725e9 + c4675fe commit 343312f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -180,6 +180,7 @@ COM_KUNENA_MYPROFILE_POSTS="Posts"
COM_KUNENA_MYPROFILE_PROFILEVIEW="Profile Views"
COM_KUNENA_MYPROFILE_RANK="Rank"
COM_KUNENA_MYPROFILE_REGISTERDATE="Register Date"
COM_KUNENA_MYPROFILE_SEND_MESSAGE="Send a message"
COM_KUNENA_MYPROFILE_SIGNATURE="Signature"
COM_KUNENA_MYPROFILE_SIGNATURE_DESC="You can use smileys and BBCodes in your signature"
COM_KUNENA_MYPROFILE_THANKYOU_RECEIVED="Thank you received:"
Expand Down
Expand Up @@ -39,7 +39,7 @@
<li><strong><?php echo JText::_('COM_KUNENA_MYPROFILE_PROFILEVIEW'); ?>:</strong> <?php echo intval($this->profile->uhits); ?></li>
<li><?php echo $this->displayKarma(); ?></li>
<?php if ($PMlink) : ?>
<li><?php echo $PMlink; ?></li>
<li><?php if( $this->me->userid != $this->user->id): ?><strong><?php echo JText::_('COM_KUNENA_MYPROFILE_SEND_MESSAGE'); ?>:</strong> <?php endif ?><?php echo $PMlink; ?></li>
<?php endif ?>
<?php if( !empty($this->personalText) ) { ?><li><strong><?php echo JText::_('COM_KUNENA_MYPROFILE_ABOUTME'); ?>:</strong> <?php echo KunenaHtmlParser::parseText($this->personalText); ?></li><?php } ?>
</ul>
Expand Down

0 comments on commit 343312f

Please sign in to comment.