diff options
| author | Lars Hjemli <hjemli@gmail.com> | 2010-07-13 21:55:47 +0200 | 
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2010-07-13 21:55:47 +0200 | 
| commit | 60fcf600f5010701c20b63867999a802ca0e05c0 (patch) | |
| tree | d46f660ec5c72bb3efe65ea5039386714da2e71e /parsing.c | |
| parent | Merge branch 'lh/range-search' (diff) | |
| parent | Reencode author and committer (diff) | |
| download | cgit-60fcf600f5010701c20b63867999a802ca0e05c0.tar.gz cgit-60fcf600f5010701c20b63867999a802ca0e05c0.tar.bz2 cgit-60fcf600f5010701c20b63867999a802ca0e05c0.zip | |
Merge branch 'stable'
Diffstat (limited to '')
| -rw-r--r-- | parsing.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| @@ -190,6 +190,10 @@ struct commitinfo *cgit_parse_commit(struct commit *commit)  		ret->subject = xstrdup(p);  	if (ret->msg_encoding) { +		reencode(&ret->author, PAGE_ENCODING, ret->msg_encoding); +		reencode(&ret->author_email, PAGE_ENCODING, ret->msg_encoding); +		reencode(&ret->committer, PAGE_ENCODING, ret->msg_encoding); +		reencode(&ret->committer_email, PAGE_ENCODING, ret->msg_encoding);  		reencode(&ret->subject, PAGE_ENCODING, ret->msg_encoding);  		reencode(&ret->msg, PAGE_ENCODING, ret->msg_encoding);  	} | 
