]> git.mxchange.org Git - friendica.git/commitdiff
removed parentheses and indended it for better readability
authorRoland Haeder <roland@mxchange.org>
Sat, 25 Mar 2017 11:55:13 +0000 (12:55 +0100)
committerRoland Haeder <roland@mxchange.org>
Sat, 25 Mar 2017 11:55:39 +0000 (12:55 +0100)
Signed-off-by: Roland Haeder <roland@mxchange.org>
boot.php

index 57d265711d6a6d19ff1663d6fa1a694009f2151a..0efd4a2069ce6972cbdcbbf8ad1d613a94b32e34 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -1234,7 +1234,12 @@ class App {
        }
 
        function get_useragent() {
-               return (FRIENDICA_PLATFORM." '".FRIENDICA_CODENAME."' ".FRIENDICA_VERSION."-".DB_UPDATE_VERSION."; ".$this->get_baseurl());
+               return
+                       FRIENDICA_PLATFORM . " '" .
+                       FRIENDICA_CODENAME . "' " .
+                       FRIENDICA_VERSION . "-" .
+                       DB_UPDATE_VERSION . "; " .
+                       $this->get_baseurl();
        }
 
        function is_friendica_app() {