From: Evan Prodromou Date: Wed, 16 Sep 2009 01:22:47 +0000 (-0400) Subject: add user agent and correct version check to httpclient X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8ceb4196f323295742fd1113ff014ebee9ad7ae3;p=quix0rs-gnu-social.git add user agent and correct version check to httpclient --- diff --git a/lib/httpclient.php b/lib/httpclient.php index 145409f509..d606f5a6e9 100644 --- a/lib/httpclient.php +++ b/lib/httpclient.php @@ -27,7 +27,7 @@ * @link http://laconi.ca/ */ -if (!defined('LACONICA')) { +if (!defined('STATUSNET')) { exit(1); } @@ -114,4 +114,9 @@ class HTTPClient { throw new Exception("DELETE method unimplemented"); } + + function userAgent() + { + return "StatusNet/".STATUSNET_VERSION." (".STATUSNET_CODENAME.")"; + } }