Changeset 1090 for WAeUP_SRP/trunk/skins/waeup_student
- Timestamp:
- 19 Dec 2006, 07:31:18 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_student/getApplicationInfo.py
r1088 r1090 27 27 info = {} 28 28 requested_id = context.getStudentId() 29 if member_id != requested_id:29 if requested_id and not context.isStaff() and member_id != requested_id: 30 30 logger.info('"%s", "accessed application object of", "%s"' % (member_id,requested_id)) 31 31 student_id = requested_id 32 elif context.isStaff(): 33 student_id = requested_id 32 34 else: 33 35 student_id = member_id
Note: See TracChangeset for help on using the changeset viewer.