This commit is contained in:
Nicolas Stepien 2012-12-18 16:14:38 +01:00
parent a5a5f297e4
commit 1e88e5b08e
2 changed files with 4 additions and 4 deletions

View File

@ -3770,7 +3770,7 @@
})(),
tripcode: data.trip,
uniqueID: data.poster_hash,
email: data.email ? encodeURIComponent(data.email) : '',
email: data.email ? encodeURI(data.email) : '',
subject: data.title_processed,
flagCode: data.poster_country,
flagName: data.poster_country_name_processed,
@ -3870,7 +3870,7 @@
capcode: data.capcode,
tripcode: data.trip,
uniqueID: data.id,
email: data.email ? encodeURIComponent(data.email.replace(/"/g, '"')) : '',
email: data.email ? encodeURI(data.email.replace(/"/g, '"')) : '',
subject: data.sub,
flagCode: data.country,
flagName: data.country_name,

View File

@ -2995,7 +2995,7 @@ Get =
when 'D' then 'developer'
tripcode: data.trip
uniqueID: data.poster_hash
email: if data.email then encodeURIComponent data.email else ''
email: if data.email then encodeURI data.email else ''
subject: data.title_processed
flagCode: data.poster_country
flagName: data.poster_country_name_processed
@ -3076,7 +3076,7 @@ Build =
capcode: data.capcode
tripcode: data.trip
uniqueID: data.id
email: if data.email then encodeURIComponent data.email.replace /"/g, '"' else ''
email: if data.email then encodeURI data.email.replace /"/g, '"' else ''
subject: data.sub
flagCode: data.country
flagName: data.country_name