]> git.mxchange.org Git - friendica.git/blobdiff - mod/item.php
Remove unused parameter in can_write_wall()
[friendica.git] / mod / item.php
index 1faef960163c7845bad16b15a814d58a747dd667..feb0496a3600c1db6e152fda6f4cd86309ea44f9 100644 (file)
@@ -215,7 +215,7 @@ function item_post(App $a) {
         * Now check that it is a page_type of PAGE_BLOG, and that valid personal details
         * have been provided, and run any anti-spam plugins
         */
-       if (!(can_write_wall($a, $profile_uid) || $allow_comment) && !$allow_moderated) {
+       if (!(can_write_wall($profile_uid) || $allow_comment) && !$allow_moderated) {
                notice(t('Permission denied.') . EOL) ;
                if (x($_REQUEST, 'return')) {
                        goaway($return_path);