]> git.mxchange.org Git - friendica.git/blobdiff - mod/share.php
Fix indentation
[friendica.git] / mod / share.php
index e97fa82dc89c3d029d09802557ac9691ef957563..f67dd3d200c96aa74c37602e2a360cc439db4638 100644 (file)
@@ -34,17 +34,17 @@ function share_init(App $a) {
 }
 
 function share_header($author, $profile, $avatar, $guid, $posted, $link) {
-       $header = "[share author='".str_replace(array("'", "[", "]"), array("'", "[", "]"), $author).
-               "' profile='".str_replace(array("'", "[", "]"), array("'", "[", "]"), $profile).
-               "' avatar='".str_replace(array("'", "[", "]"), array("'", "[", "]"), $avatar);
+       $header = "[share author='".str_replace(["'", "[", "]"], ["'", "[", "]"], $author).
+               "' profile='".str_replace(["'", "[", "]"], ["'", "[", "]"], $profile).
+               "' avatar='".str_replace(["'", "[", "]"], ["'", "[", "]"], $avatar);
 
        if ($guid) {
-               $header .= "' guid='".str_replace(array("'", "[", "]"), array("'", "[", "]"), $guid);
+               $header .= "' guid='".str_replace(["'", "[", "]"], ["'", "[", "]"], $guid);
        }
        if ($posted) {
-               $header .= "' posted='".str_replace(array("'", "[", "]"), array("'", "[", "]"), $posted);
+               $header .= "' posted='".str_replace(["'", "[", "]"], ["'", "[", "]"], $posted);
        }
-       $header .= "' link='".str_replace(array("'", "[", "]"), array("'", "[", "]"), $link)."']";
+       $header .= "' link='".str_replace(["'", "[", "]"], ["'", "[", "]"], $link)."']";
 
        return $header;
 }