summaryrefslogtreecommitdiffstats
path: root/app/class/mesg.class.php (follow)
AgeCommit message (Collapse)AuthorFilesLines
2021-10-20Fix bug in message renderingMalfurious1-1/+1
Using &nbsp; keeps original whitespace visible, but because it is non blocking, prevents any line wraps. Use &ensp13; instead, since it is blockable, and most accurately displays as the previous version did. Fixes 12c7230cf6bc. Signed-off-by: Malfurious <m@lfurio.us>
2021-10-19Enable greentext in issue messagesMalfurious1-2/+7
Signed-off-by: Malfurious <m@lfurio.us>
2021-09-27Preserve whitespace in ticket messagesMalfurious1-3/+2
Signed-off-by: Malfurious <m@lfurio.us>
2018-09-19Update all usage of saveFile()Malf Furious1-2/+2
Update all usage of saveFile() to use added saveIfFile() function, forwarding on the convenience to model code. Model code can pass in file field names, rather than $_FILES arrays directly.
2018-02-07Update class files to use renamed obj classMalf Furious1-5/+5
2017-06-19Update mesg function emailMesg()Malf Furious1-4/+8
Fixed a bug and fine-tuned some of the behavior of this function.
2017-06-19Add mesg function emailMesg()Malf Furious1-0/+50
2017-06-04Add mesg function makeIssue()Malf Furious1-0/+27
This feature allows a pad-level discussion to be promoted to an issue. A new object is created, but all content is preserved. However, if the thread OP message had an attachment, that attachment cannot be retained.
2017-06-04Update mesg function setAttachment()Malf Furious1-1/+7
Now saving the original name of the attachment file in the message object.
2017-06-04Define maxsize of attachment uploadsMalf Furious1-0/+5
Value set to 512 megabytes.
2017-06-04mesg: Add mesg classMalf Furious1-0/+249