Various dev fixes (#575)

* Various Bug Fixes:
Fixed: #537
Fixed: #474
Fixed: NL2BR for CCIA Actions/Records
Fixed: CCIA Actions / Records not showing up on printed record
This commit is contained in:
Werner
2016-07-14 01:46:46 +03:00
committed by skull132
parent 8ee06564f1
commit 8cf37124f2
5 changed files with 46 additions and 7 deletions
+2 -3
View File
@@ -525,7 +525,7 @@ Traitors and the like can also be revived with the previous role mostly intact.
query.Execute()
var/list/template_names = list()
var/templates[] = list()
var/list/templates = list()
while (query.NextRow())
template_names += query.item[1]
@@ -536,8 +536,7 @@ Traitors and the like can also be revived with the previous role mostly intact.
src << "<span class='notice'>There are no templates in the database.</span>"
return
reporttitle = input(usr, "Please select a command report template.", "Create Command Report") in list(template_names)
reporttitle = input(usr, "Please select a command report template.", "Create Command Report") in template_names
reportbody = templates[reporttitle]
if("Custom")