# File lib/cgikit.rb, line 1775
 def single_param( key )
		if @multiple_params.key? key
			@multiple_params[key].join( ',' )
		else
			nil
		end
	end