finishblurb.php 402 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * @package Elgg
  4. * @subpackage Core
  5. * @deprecated 1.7
  6. */
  7. elgg_deprecated_notice('view groups/search/finishblurb was deprecated.', 1.7);
  8. if ($vars['count'] > $vars['threshold']) {
  9. ?>
  10. <div class="contentWrapper"><a href="<?php echo elgg_get_site_url(); ?>search/groups?tag=<?php echo urlencode($vars['tag']); ?>">
  11. <?php
  12. echo elgg_echo("group:search:finishblurb");
  13. ?></a>
  14. </div>
  15. <?php
  16. }