blob: 5ddb5ddc012b231a5db53cf7c1f431dffe525ce2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
/**
* @package Elgg
* @subpackage Core
* @author Curverider Ltd
* @deprecated 1.7
* @link http://elgg.org/
*/
elgg_deprecated_notice('view user/search/startblurb was deprecated.', 1.7);
?>
<div class="contentWrapper">
<?php
echo sprintf(elgg_echo("user:search:startblurb"),$vars['tag']);
?>
</div>
|