From 94c365bb85f4552073d5701bb5fd3e17bfe779c2 Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Tue, 12 Dec 2006 17:14:02 +1300 Subject: [PATCH] Correct comment now that Chandler does send a user-agent string. --- htdocs/caldav.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/caldav.php b/htdocs/caldav.php index 035def1d..b36200d2 100644 --- a/htdocs/caldav.php +++ b/htdocs/caldav.php @@ -9,7 +9,7 @@ * @license http://gnu.org/copyleft/gpl.html GNU GPL v2 */ require_once("../inc/always.php"); -dbg_error_log( "caldav", " User agent: %s", ((isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : "Unfortunately Mulberry and Chandler don't send a 'User-agent' header with their requests :-(")) ); +dbg_error_log( "caldav", " User agent: %s", ((isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : "Unfortunately Mulberry does not send a 'User-agent' header with its requests :-(")) ); require_once("BasicAuthSession.php"); dbg_log_array( "headers", '_SERVER', $_SERVER, true );