Skip to content
Snippets Groups Projects
Commit 956a867f authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Don't allow duplicate extended and normal descriptions

If the extended description and the normal (short) description are the same,
delete the extended (long) description.
parent 3d5c2628
No related branches found
No related tags found
No related merge requests found
......@@ -628,6 +628,8 @@ function parse_ticfile(fname)
if(tic.desc.length > LEN_FDESC && !tic.ldesc)
tic.ldesc = tic.desc.replace(" ", "\r\n");
tic.desc = format("%.*s", LEN_FDESC, tic.desc.trim());
if(tic.ldesc == tic.desc)
delete tic.ldesc;
}
f.close();
f = new File(dir+tic.file);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment