##parameters=**kw
+from Products.photoprint.utils import grantAccess
kg = lambda name : kw.get(name,'').strip()
-weddingId = kg('wedding_id')
-if not weddingId :
+collectionId = kg('collection_id')
+if not collectionId :
return True
else :
- password = kg('wedding_password')
- confirm = kg('wedding_password_confirm')
+ password = kg('collection_password')
+ confirm = kg('collection_password_confirm')
memberId = kg('member_id')
- msg = context.grantAccess(context, weddingId, password, confirm, memberId)
+ msg = grantAccess(collectionId, password, confirm, memberId)
if msg :
return context.setStatus(False, msg)
else :