Continued rewriting a bit:
- more usage of dbm::is_result() - nicer look of code Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
parent
8db0be09b8
commit
5547bc2cc2
|
@ -1260,7 +1260,7 @@ function tag_deliver($uid,$item_id) {
|
||||||
$c = q("select name, url, thumb from contact where self = 1 and uid = %d limit 1",
|
$c = q("select name, url, thumb from contact where self = 1 and uid = %d limit 1",
|
||||||
intval($u[0]['uid'])
|
intval($u[0]['uid'])
|
||||||
);
|
);
|
||||||
if (! count($c)) {
|
if (! dbm::is_result($c)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1293,8 +1293,6 @@ function tag_deliver($uid,$item_id) {
|
||||||
|
|
||||||
function tgroup_check($uid,$item) {
|
function tgroup_check($uid,$item) {
|
||||||
|
|
||||||
$a = get_app();
|
|
||||||
|
|
||||||
$mention = false;
|
$mention = false;
|
||||||
|
|
||||||
// check that the message originated elsewhere and is a top-level post
|
// check that the message originated elsewhere and is a top-level post
|
||||||
|
|
|
@ -28,7 +28,7 @@ function allfriends_content(App &$a) {
|
||||||
intval(local_user())
|
intval(local_user())
|
||||||
);
|
);
|
||||||
|
|
||||||
if (! count($c)) {
|
if (! dbm::is_result($c)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user