Changeset 3816 for WAeUP_SRP/trunk/skins/waeup_epayment/interswitch_cb.py
- Timestamp:
- 15 Dec 2008, 06:44:18 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_epayment/interswitch_cb.py
r3240 r3816 34 34 access_info = context.waeup_tool.getAccessInfo(context) 35 35 student_id = access_info['student_id'] 36 if student_id is None: # or student_id != member_id:36 if not context.isSectionOfficer() and (student_id is None or student_id != member_id): 37 37 logger.info('%s tried to access payment object of %s' % (member_id,student_id)) 38 38 referer = request.get('HTTP_REFERER','none')
Note: See TracChangeset for help on using the changeset viewer.