Changeset 14798 for main/kofacustom.nigeria/trunk
- Timestamp:
- 14 Aug 2017, 06:20:37 (7 years ago)
- Location:
- main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/remita
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/remita/applicantsbrowser.py
r14796 r14798 228 228 @property 229 229 def action(self): 230 if HTTPS:231 return 'https://' + HOST+ '/remita/ecomm/finalize.reg'232 return 'http://' + HOST+ '/remita/ecomm/finalize.reg'230 if self.https: 231 return 'https://' + self.host + '/remita/ecomm/finalize.reg' 232 return 'http://' + self.host + '/remita/ecomm/finalize.reg' 233 233 234 234 def init_update(self): -
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/remita/studentsbrowser.py
r14796 r14798 236 236 @property 237 237 def action(self): 238 if HTTPS:239 return 'https://' + HOST+ '/remita/ecomm/finalize.reg'240 return 'http://' + HOST+ '/remita/ecomm/finalize.reg'238 if self.https: 239 return 'https://' + self.host + '/remita/ecomm/finalize.reg' 240 return 'http://' + self.host + '/remita/ecomm/finalize.reg' 241 241 242 242 def init_update(self):
Note: See TracChangeset for help on using the changeset viewer.