You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by ch...@apache.org on 2008/11/02 16:40:28 UTC

svn commit: r709888 - /incubator/shindig/trunk/php/src/social/service/ResponseError.php

Author: chabotc
Date: Sun Nov  2 07:40:27 2008
New Revision: 709888

URL: http://svn.apache.org/viewvc?rev=709888&view=rev
Log:
Switch case typo found by Anash Oommen

Modified:
    incubator/shindig/trunk/php/src/social/service/ResponseError.php

Modified: incubator/shindig/trunk/php/src/social/service/ResponseError.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/social/service/ResponseError.php?rev=709888&r1=709887&r2=709888&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/social/service/ResponseError.php (original)
+++ incubator/shindig/trunk/php/src/social/service/ResponseError.php Sun Nov  2 07:40:27 2008
@@ -70,7 +70,7 @@
 				$this->httpErrorMsg = '403 Forbidden';
 				$this->httpErrorcode = 403;
 				break;
-			case self::$FORBIDDEN:
+			case self::$NOT_FOUND:
 				$this->httpErrorMsg = '404 Not Found';
 				$this->httpErrorcode = 404;
 				break;