diff options
-rw-r--r-- | include/contact_widgets.php | 2 | ||||
-rwxr-xr-x | view/tpl/peoplefind.tpl | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/contact_widgets.php b/include/contact_widgets.php index bc7faebc3..af05f8c9f 100644 --- a/include/contact_widgets.php +++ b/include/contact_widgets.php @@ -47,7 +47,7 @@ function findpeople_widget() { '$hint' => t('Examples: Robert Morgenstein, Fishing'), '$findthem' => t('Find'), '$suggest' => t('Channel Suggestions'), - '$similar' => t('Similar Interests'), + '$similar' => '', // FIXME and uncomment when mod/match working // t('Similar Interests'), '$random' => t('Random Profile'), '$inv' => t('Invite Friends') )); diff --git a/view/tpl/peoplefind.tpl b/view/tpl/peoplefind.tpl index 831cd9614..c3cbb064b 100755 --- a/view/tpl/peoplefind.tpl +++ b/view/tpl/peoplefind.tpl @@ -4,7 +4,9 @@ <form action="directory" method="post" /> <input id="side-peoplefind-url" type="text" name="search" size="24" title="{{$hint}}" /><input id="side-peoplefind-submit" type="submit" name="submit" value="{{$findthem}}" /> </form> + {{if $similar}} <div class="side-link" id="side-match-link"><a href="match" >{{$similar}}</a></div> + {{/if}} <div class="side-link" id="side-suggest-link"><a href="suggest" >{{$suggest}}</a></div> <div class="side-link" id="side-random-profile-link" ><a href="randprof" >{{$random}}</a></div> {{if $inv}} |