mirror of
https://github.com/friendica/friendica
synced 2024-11-18 09:03:42 +00:00
Rename Contacts:content function
This commit is contained in:
parent
ba95487abf
commit
93ab82b7f0
2 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ function update_contacts_content(App $a)
|
||||||
echo "<section>";
|
echo "<section>";
|
||||||
|
|
||||||
if ($_GET["force"] == 1) {
|
if ($_GET["force"] == 1) {
|
||||||
$text = Contacts::contacts_content($a, true);
|
$text = Contacts::content($a, true);
|
||||||
} else {
|
} else {
|
||||||
$text = '';
|
$text = '';
|
||||||
}
|
}
|
||||||
|
|
|
@ -379,7 +379,7 @@ class Contacts extends BaseModule
|
||||||
Contact::remove($orig_record['id']);
|
Contact::remove($orig_record['id']);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function contacts_content($update = 0)
|
public static function content($update = 0)
|
||||||
{
|
{
|
||||||
$a = self::getApp();
|
$a = self::getApp();
|
||||||
$sort_type = 0;
|
$sort_type = 0;
|
||||||
|
|
Loading…
Reference in a new issue