Revision: 2272
Author: olavmrk
Date: Mon Apr 26 23:04:07 2010
Log: SAML2/Binding: Fix misspelling of array_key_exists.
http://code.google.com/p/simplesamlphp/source/detail?r=2272
Modified:
/trunk/lib/SAML2/Binding.php
=======================================
--- /trunk/lib/SAML2/Binding.php Fri Jan 15 02:10:50 2010
+++ /trunk/lib/SAML2/Binding.php Mon Apr 26 23:04:07 2010
@@ -63,7 +63,7 @@
case 'POST':
if (array_key_exists('SAMLRequest', $_REQUEST) ||
array_key_exists('SAMLResponse', $_REQUEST)) {
return new SAML2_HTTPPost();
- } elseif (array_key_exits('CONTENT_TYPE', $_SERVER) &&
$_SERVER['CONTENT_TYPE'] === 'text/xml'){
+ } elseif (array_key_exists('CONTENT_TYPE', $_SERVER) &&
$_SERVER['CONTENT_TYPE'] === 'text/xml'){
return new SAML2_SOAP();
}
break;
--
You received this message because you are subscribed to the Google Groups
"simpleSAMLphp commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/simplesamlphp-commits?hl=en.