functions moved to HTML class
update function calls to moved class.
This commit is contained in:
parent
e31dde6084
commit
a71eb1d127
8 changed files with 19 additions and 14 deletions
|
|
@ -7,6 +7,7 @@ use Friendica\Core\Config;
|
|||
use Friendica\Core\L10n;
|
||||
use Friendica\Core\PConfig;
|
||||
use Friendica\Core\Protocol;
|
||||
use Friendica\Content\Text\HTML;
|
||||
use Friendica\Database\DBA;
|
||||
use Friendica\Model\Profile;
|
||||
|
||||
|
|
@ -133,7 +134,7 @@ function profperm_content(App $a) {
|
|||
foreach($members as $member) {
|
||||
if ($member['url']) {
|
||||
$member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['id'] . '); return true;';
|
||||
$o .= micropro($member,true,'mpprof', $textmode);
|
||||
$o .= HTML::micropro($member,true,'mpprof', $textmode);
|
||||
}
|
||||
}
|
||||
$o .= '</div><div id="prof-members-end"></div>';
|
||||
|
|
@ -155,7 +156,7 @@ function profperm_content(App $a) {
|
|||
foreach($r as $member) {
|
||||
if (!in_array($member['id'],$ingroup)) {
|
||||
$member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['id'] . '); return true;';
|
||||
$o .= micropro($member,true,'mpprof',$textmode);
|
||||
$o .= HTML::micropro($member,true,'mpprof',$textmode);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue