Changeset 7833 for main/waeup.kofa/trunk/src/waeup/kofa/applicants
- Timestamp:
- 10 Mar 2012, 09:45:25 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py
r7819 r7833 232 232 @property 233 233 def introduction(self): 234 portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE235 lang = self.request.cookies.get('kofa.language' , portal_language)234 # Here we know that the cookie has been set 235 lang = self.request.cookies.get('kofa.language') 236 236 html = self.context.description_dict.get(lang,'') 237 237 if html =='': 238 portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE 238 239 html = self.context.description_dict.get(portal_language,'') 239 240 if html =='':
Note: See TracChangeset for help on using the changeset viewer.