Author: doll
Date: Tue Jul 8 17:17:11 2008
New Revision: 675067
URL: http://svn.apache.org/viewvc?rev=675067&view=rev
Log:
SHINDIG-433
Patch from Adam Winer. Fixed js reference to an unknown variable in the restful
container.
Modified:
incubator/shindig/trunk/features/opensocial-current/restfulcontainer.js
Modified:
incubator/shindig/trunk/features/opensocial-current/restfulcontainer.js
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/features/opensocial-current/restfulcontainer.js?rev=675067&r1=675066&r2=675067&view=diff
==============================================================================
--- incubator/shindig/trunk/features/opensocial-current/restfulcontainer.js
(original)
+++ incubator/shindig/trunk/features/opensocial-current/restfulcontainer.js Tue
Jul 8 17:17:11 2008
@@ -201,8 +201,8 @@
userId = '@owner';
} else if (userId == 'VIEWER') {
userId = '@viewer';
- } else if (opensocial.Container.isArray(idSpec)) {
- for (var i = 0; i < idSpec.length; i++) {
+ } else if (opensocial.Container.isArray(newIdSpec)) {
+ for (var i = 0; i < newIdSpec.length; i++) {
// TODO: We will need multiple urls here....don't want to think about
// that yet
}