Author: chabotc
Date: Thu Jan 22 16:47:32 2009
New Revision: 736872
URL: http://svn.apache.org/viewvc?rev=736872&view=rev
Log:
%40all (@all) wasn't being picked up correctly through the REST endpoint,
adding a urldecode fixes that
Modified:
incubator/shindig/trunk/php/src/social/service/RequestItem.php
Modified: incubator/shindig/trunk/php/src/social/service/RequestItem.php
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/social/service/RequestItem.php?rev=736872&r1=736871&r2=736872&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/social/service/RequestItem.php (original)
+++ incubator/shindig/trunk/php/src/social/service/RequestItem.php Thu Jan 22
16:47:32 2009
@@ -163,7 +163,7 @@
$cleanResult = array();
foreach ($result as $field) {
if (! in_array($field, $cleanResult)) {
- $cleanResult[] = $field;
+ $cleanResult[] = urldecode($field);
}
}
$result = $cleanResult;