Changeset 11581 for main/kofacustom.nigeria/trunk/src/kofacustom/nigeria
- Timestamp:
- 4 Apr 2014, 08:38:27 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/interswitch/browser.py
r11579 r11581 90 90 return 91 91 write_payments_log(student.student_id, self.context) 92 msg, log = self.context.doAfterStudentPayment()92 flashtype, msg, log = self.context.doAfterStudentPayment() 93 93 if log is not None: 94 94 student.writeLogMessage(self, log) 95 self.flash(msg )95 self.flash(msg, type=flashtype) 96 96 return 97 97 … … 123 123 return 124 124 write_payments_log(applicant.applicant_id, self.context) 125 msg, log = self.context.doAfterApplicantPayment()125 flashtype, msg, log = self.context.doAfterApplicantPayment() 126 126 if log is not None: 127 127 applicant.writeLogMessage(self, log) 128 self.flash(msg )128 self.flash(msg, type=flashtype) 129 129 return 130 130
Note: See TracChangeset for help on using the changeset viewer.