# File lib/cgikit.rb, line 1063
 def to_s
		if ( @attr_empty ) and ( @attr_value == nil ) then
			@attr_value = @attr_empty
		end
		if ( @attr_escape ) and ( @attr_value ) then
			@attr_value = CKUtilities.escape_html @attr_value
		end

		@attr_value.to_s
	end