mirror of
https://github.com/friendica/friendica
synced 2025-04-22 02:30:11 +00:00
Fixes:
- used empty() instead of x() - removed superflous count() Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
parent
d0c7ba5257
commit
f34d72c143
2 changed files with 4 additions and 3 deletions
|
@ -254,6 +254,7 @@ function can_write_wall($owner)
|
|||
return false;
|
||||
}
|
||||
|
||||
/// @TODO $groups should be array
|
||||
function permissions_sql($owner_id, $remote_verified = false, $groups = null)
|
||||
{
|
||||
$local_user = local_user();
|
||||
|
@ -305,7 +306,7 @@ function permissions_sql($owner_id, $remote_verified = false, $groups = null)
|
|||
if ($remote_verified) {
|
||||
$gs = '<<>>'; // should be impossible to match
|
||||
|
||||
if (is_array($groups) && count($groups)) {
|
||||
if (is_array($groups)) {
|
||||
foreach ($groups as $g) {
|
||||
$gs .= '|<' . intval($g) . '>';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue