placeholder for a funny commit description for removing some more notices (#5631)
This commit is contained in:
parent
060e887a31
commit
ab5cedfa50
|
@ -94,11 +94,11 @@ function match_content(App $a)
|
|||
|
||||
$entry = [
|
||||
'url' => Contact::magicLink($jj->url),
|
||||
'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $jj->url),
|
||||
'itemurl' => defaults($contact_details, 'addr', $jj->url),
|
||||
'name' => $jj->name,
|
||||
'details' => $contact_details['location'],
|
||||
'tags' => $contact_details['keywords'],
|
||||
'about' => $contact_details['about'],
|
||||
'details' => defaults($contact_details, 'location', ''),
|
||||
'tags' => defaults($contact_details, 'keywords', ''),
|
||||
'about' => defaults($contact_details, 'about', ''),
|
||||
'account_type' => Contact::getAccountType($contact_details),
|
||||
'thumb' => ProxyUtils::proxifyUrl($jj->photo, false, ProxyUtils::SIZE_THUMB),
|
||||
'inttxt' => ' ' . L10n::t('is interested in:'),
|
||||
|
|
|
@ -82,7 +82,7 @@ function profperm_content(App $a) {
|
|||
|
||||
$members = $r;
|
||||
|
||||
if($change) {
|
||||
if (!empty($change)) {
|
||||
if (in_array($change,$ingroup)) {
|
||||
q("UPDATE `contact` SET `profile-id` = 0 WHERE `id` = %d AND `uid` = %d",
|
||||
intval($change),
|
||||
|
@ -120,7 +120,7 @@ function profperm_content(App $a) {
|
|||
}
|
||||
|
||||
$o .= '<div id="prof-update-wrapper">';
|
||||
if($change)
|
||||
if (!empty($change))
|
||||
$o = '';
|
||||
|
||||
$o .= '<div id="prof-members-title">';
|
||||
|
@ -162,7 +162,7 @@ function profperm_content(App $a) {
|
|||
|
||||
$o .= '</div><div id="prof-all-contacts-end"></div>';
|
||||
|
||||
if($change) {
|
||||
if (!empty($change)) {
|
||||
echo $o;
|
||||
killme();
|
||||
}
|
||||
|
|
|
@ -365,6 +365,7 @@ function videos_content(App $a)
|
|||
if (DBA::isResult($r)) {
|
||||
foreach ($r as $rr) {
|
||||
$alt_e = $rr['filename'];
|
||||
/// @todo The album isn't part of the above query. This seems to be some unfinished code that needs to be reworked completely.
|
||||
$name_e = $rr['album'];
|
||||
|
||||
$videos[] = [
|
||||
|
|
|
@ -62,7 +62,7 @@ class Event extends BaseObject
|
|||
$o .= "<h4>" . L10n::t('Finishes:') . "</h4><p>" . $event_end . "</p>";
|
||||
}
|
||||
|
||||
if (strlen($event['location'])) {
|
||||
if (!empty($event['location'])) {
|
||||
$o .= "<h4>" . L10n::t('Location:') . "</h4><p>" . BBCode::convert($event['location'], false, $simple) . "</p>";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user