removed parentheses and indended it for better readability
Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
parent
bd4cee8c21
commit
d64dafec63
1 changed files with 6 additions and 1 deletions
7
boot.php
7
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() {
|
||||
|
|
Loading…
Reference in a new issue