You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by ri...@apache.org on 2011/01/22 18:10:16 UTC

svn commit: r1062202 - /incubator/chemistry/phpclient/trunk/cmis_repository_wrapper.php

Author: richardm
Date: Sat Jan 22 17:10:15 2011
New Revision: 1062202

URL: http://svn.apache.org/viewvc?rev=1062202&view=rev
Log:
CMIS-297 HTTP_REQUET_TIMEOUT definition conflicts with DRUPAL 7 definition
   Initial rememdy is to change the constant to xHTTP_REQUET_TIMEOUT since it is not being used

Modified:
    incubator/chemistry/phpclient/trunk/cmis_repository_wrapper.php

Modified: incubator/chemistry/phpclient/trunk/cmis_repository_wrapper.php
URL: http://svn.apache.org/viewvc/incubator/chemistry/phpclient/trunk/cmis_repository_wrapper.php?rev=1062202&r1=1062201&r2=1062202&view=diff
==============================================================================
--- incubator/chemistry/phpclient/trunk/cmis_repository_wrapper.php (original)
+++ incubator/chemistry/phpclient/trunk/cmis_repository_wrapper.php Sat Jan 22 17:10:15 2011
@@ -31,7 +31,7 @@ define("HTTP_NOT_FOUND", 404); // object
 define("HTTP_METHOD_NOT_ALLOWED", 405); // notSupported
 define("HTTP_NOT_ACCEPTABLE", 406);
 define("HTTP_PROXY_AUTHENTICATION_REQUIRED", 407);
-define("HTTP_REQUEST_TIMEOUT", 408);
+define("xHTTP_REQUEST_TIMEOUT", 408); //Had to change this b/c HTTP_REQUEST_TIMEOUT conflicts with definition in Drupal 7
 define("HTTP_CONFLICT", 409); // constraint, contentAlreadyExists, versioning, updateConflict, nameConstraintViolation
 define("HTTP_UNSUPPORTED_MEDIA_TYPE", 415);
 define("HTTP_UNPROCESSABLE_ENTITY", 422);