# File lib/cgikit.rb, line 1827
        def template_string
                begin
                        f = File.new template_file.untaint
                        @template_string = f.read
                        f.close
                rescue
                        msg = "Can't read a template file - #{template_file}"
                        raise FileNotFoundError, msg
                end

                @template_string
        end