mirror of
https://github.com/GAM-team/GAM.git
synced 2026-06-28 09:51:36 +00:00
Fixed bug that caused HTML password notification email messages to be displayed in raw form.
This commit is contained in:
@@ -2,6 +2,10 @@
|
||||
|
||||
Merged GAM-Team version
|
||||
|
||||
6.67.24
|
||||
|
||||
Fixed bug that caused HTML password notification email messages to be displayed in raw form.
|
||||
|
||||
6.67.23
|
||||
|
||||
Use local copy of `googleapiclient` to remove static discovery documents to improve performance.
|
||||
|
||||
@@ -14367,7 +14367,7 @@ def sendCreateUpdateUserNotification(body, basenotify, tagReplacements, i=0, cou
|
||||
if not html:
|
||||
notify[field] = notify[field].replace('#password#', notify['password'])
|
||||
else:
|
||||
notify[field] = notify[field].replace('#password#', notify['password']).replace('&', '&').replace('<', '<').replace('>', '>')
|
||||
notify[field] = notify[field].replace('#password#', notify['password'].replace('&', '&').replace('<', '<').replace('>', '>'))
|
||||
|
||||
userName, domain = splitEmailAddress(body['primaryEmail'])
|
||||
notify = basenotify.copy()
|
||||
|
||||
Reference in New Issue
Block a user