mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-16 20:05:14 +02:00
[Scrutinizer] Fix undeclared variables part 7: mod/ and view/
- Remove unused function `salmon_return()`
This commit is contained in:
parent
2234bb92ae
commit
7a38fbf84b
7 changed files with 14 additions and 21 deletions
|
@ -217,6 +217,7 @@ function frio_remote_nav($a, &$nav)
|
|||
// And construct a webbie (e.g. mickey@friendica.domain.com for the search in gcontact
|
||||
// We use the webbie for search in gcontact because we don't know if gcontact table stores
|
||||
// the right value if its http or https protocol
|
||||
$webbie = '';
|
||||
if (count($url_parts)) {
|
||||
$server_url = $url_parts[1] . $url_parts[2];
|
||||
$webbie = $url_parts[4] . '@' . $url_parts[2];
|
||||
|
@ -296,14 +297,9 @@ function frio_acl_lookup(App $a, &$results)
|
|||
return;
|
||||
}
|
||||
|
||||
$searching = false;
|
||||
$sql_extra = '';
|
||||
if ($results["search"]) {
|
||||
$search_txt = dbesc(protect_sprintf(preg_quote($results["search"])));
|
||||
$searching = true;
|
||||
}
|
||||
|
||||
$sql_extra = '';
|
||||
if ($searching) {
|
||||
$sql_extra .= " AND (`attag` LIKE '%%" . dbesc($search_txt) . "%%' OR `name` LIKE '%%" . dbesc($search_txt) . "%%' OR `nick` LIKE '%%" . dbesc($search_txt) . "%%') ";
|
||||
}
|
||||
|
||||
|
@ -311,6 +307,7 @@ function frio_acl_lookup(App $a, &$results)
|
|||
$sql_extra .= sprintf(" AND network = '%s' ", dbesc($nets));
|
||||
}
|
||||
|
||||
$total = 0;
|
||||
$r = q("SELECT COUNT(*) AS `total` FROM `contact`
|
||||
WHERE `uid` = %d AND NOT `self` AND NOT `pending` $sql_extra ", intval($_SESSION['uid']));
|
||||
if (DBM::is_result($r)) {
|
||||
|
|
|
@ -215,6 +215,7 @@ function vier_community_info()
|
|||
|
||||
//Community_Pages at right_aside
|
||||
if ($show_pages && local_user()) {
|
||||
$cid = null;
|
||||
if (x($_GET, 'cid') && intval($_GET['cid']) != 0) {
|
||||
$cid = $_GET['cid'];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue