From c9667bbd69d763eda2eaf898b881f7a8aa0e925b Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Mon, 6 Oct 2014 10:06:53 +0200 Subject: [PATCH] add codename to useragent string --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index f3c8db39..0d7c6e87 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()); } }