Fix typo.

This commit is contained in:
Andrew McMillan 2012-05-19 10:00:33 +12:00
parent be5227f0ca
commit 0070914394

View File

@ -123,7 +123,7 @@ class CalDAVRequest
if ( isset($_SERVER['HTTP_PREFER']) ) {
$this->prefer = explode( ',', $_SERVER['HTTP_PREFER']);
}
else if ( isset($_SERVER['HTTP_BRIEF']) && (strtoupper($_SERVER['HTTP_PREFER']) == 'T') ) {
else if ( isset($_SERVER['HTTP_BRIEF']) && (strtoupper($_SERVER['HTTP_BRIEF']) == 'T') ) {
$this->prefer = array( 'return-minimal');
}
else