diff options
author | Max Kostikov <max@kostikov.co> | 2021-03-09 09:06:16 +0000 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2021-03-09 09:06:16 +0000 |
commit | 975d8ef0c7fba8fdc26f29dae9cd47c7f6079e67 (patch) | |
tree | ea6bc3d844be6e3991b2c1add1cee95afb021b00 /include | |
parent | 65e9ff357bc533bd1e61c66b3067d64d638d25cb (diff) | |
download | volse-hubzilla-975d8ef0c7fba8fdc26f29dae9cd47c7f6079e67.tar.gz volse-hubzilla-975d8ef0c7fba8fdc26f29dae9cd47c7f6079e67.tar.bz2 volse-hubzilla-975d8ef0c7fba8fdc26f29dae9cd47c7f6079e67.zip |
Fix deprecated function arguments order
Diffstat (limited to 'include')
-rw-r--r-- | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 88f100e60..a1198bb4d 100644 --- a/include/items.php +++ b/include/items.php @@ -4853,7 +4853,7 @@ function item_remove_cid($xchan_hash,$mid,$uid) { } // Set item permissions based on results obtained from linkify_tags() -function set_linkified_perms($linkified, &$str_contact_allow, &$str_group_allow, $profile_uid, $parent_item = false, &$private) { +function set_linkified_perms($linkified, &$str_contact_allow, &$str_group_allow, $profile_uid, &$private, $parent_item = false) { $first_access_tag = true; foreach($linkified as $x) { |