]> git.mxchange.org Git - friendica.git/commitdiff
added space + type-hinted $a (App)
authorRoland Haeder <roland@mxchange.org>
Fri, 14 Apr 2017 13:29:50 +0000 (15:29 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 14 Apr 2017 13:29:50 +0000 (15:29 +0200)
Signed-off-by: Roland Haeder <roland@mxchange.org>
include/conversation.php

index 44764112464f3cad99ca2740d681beed58d4f3cb..6ce9a6dea427fb8ff6951907c8199f0acbb8b7b1 100644 (file)
@@ -1209,7 +1209,7 @@ function format_like($cnt, array $arr, $type, $id) {
        return $o;
 }}
 
-function status_editor($a,$x, $notes_cid = 0, $popup = false) {
+function status_editor(App $a, $x, $notes_cid = 0, $popup = false) {
        $o = '';
 
        $geotag = (x($x, 'allow_location') ? replace_macros(get_markup_template('jot_geotag.tpl'), array()) : '');
@@ -1250,7 +1250,7 @@ function status_editor($a,$x, $notes_cid = 0, $popup = false) {
 
        // Private/public post links for the non-JS ACL form
        $private_post = 1;
-       if ($_REQUEST['public']) {
+       if (x($_REQUEST, 'public')) {
                $private_post = 0;
        }