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/10/12 03:09:47 UTC

svn commit: r703756 - /incubator/shindig/trunk/php/src/social/servlet/ApiServlet.php

Author: chabotc
Date: Sat Oct 11 18:09:47 2008
New Revision: 703756

URL: http://svn.apache.org/viewvc?rev=703756&view=rev
Log:
SHINDIG-652 by Yoichiro Tanaka, syntax fix

Modified:
    incubator/shindig/trunk/php/src/social/servlet/ApiServlet.php

Modified: incubator/shindig/trunk/php/src/social/servlet/ApiServlet.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/social/servlet/ApiServlet.php?rev=703756&r1=703755&r2=703756&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/social/servlet/ApiServlet.php (original)
+++ incubator/shindig/trunk/php/src/social/servlet/ApiServlet.php Sat Oct 11 18:09:47 2008
@@ -110,7 +110,7 @@
 	protected function handleRequestItem(RequestItem $requestItem)
 	{
 		if (! isset($this->handlers[$requestItem->getService()])) {
-			throw new SocialSpiException("The service " + $requestItem->getService() + " is not implemented", ResponseError::$NOT_IMPLEMENTED);
+			throw new SocialSpiException("The service " . $requestItem->getService() . " is not implemented", ResponseError::$NOT_IMPLEMENTED);
 		}
 		$handler = $this->handlers[$requestItem->getService()];
 		return $handler->handleItem($requestItem);