From d64dafec636dca15c374d0af616c2b1a4b9a7b4a Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Sat, 25 Mar 2017 12:55:13 +0100 Subject: [PATCH] removed parentheses and indended it for better readability Signed-off-by: Roland Haeder --- boot.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 57d265711d..0efd4a2069 100644 --- 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() {