From: Fabrixxm Date: Mon, 6 Oct 2014 08:06:53 +0000 (+0200) Subject: add codename to useragent string X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c9667bbd69d763eda2eaf898b881f7a8aa0e925b;p=friendica.git add codename to useragent string --- diff --git a/boot.php b/boot.php index f3c8db3948..0d7c6e878f 100644 --- a/boot.php +++ b/boot.php @@ -877,7 +877,7 @@ if(! class_exists('App')) { } function get_useragent() { - return(FRIENDICA_PLATFORM." ".FRIENDICA_VERSION."-".DB_UPDATE_VERSION."; ".$this->get_baseurl()); + return(FRIENDICA_PLATFORM." '".FRIENDICA_CODENAME."' ".FRIENDICA_VERSION."-".DB_UPDATE_VERSION."; ".$this->get_baseurl()); } }