1
0
Fork 0

Normalize App parameter declaration (mod folder, 1 out of 3)

This commit is contained in:
Hypolite Petovan 2017-01-09 23:12:54 +11:00
commit 8a197055e3
42 changed files with 172 additions and 174 deletions

View file

@ -1,12 +1,12 @@
<?php
require_once('mod/settings.php');
function delegate_init(App &$a) {
function delegate_init(App $a) {
return settings_init($a);
}
function delegate_content(App &$a) {
function delegate_content(App $a) {
if (! local_user()) {
notice( t('Permission denied.') . EOL);
@ -90,12 +90,12 @@ function delegate_content(App &$a) {
// find every contact who might be a candidate for delegation
$r = q("select nurl from contact where substring_index(contact.nurl,'/',3) = '%s'
$r = q("select nurl from contact where substring_index(contact.nurl,'/',3) = '%s'
and contact.uid = %d and contact.self = 0 and network = '%s' ",
dbesc(normalise_link(App::get_baseurl())),
intval(local_user()),
dbesc(NETWORK_DFRN)
);
);
if (! dbm::is_result($r)) {
notice( t('No potential page delegates located.') . EOL);