# File lib/cgikit.rb, line 1565
 def run
		@attr_name     = oid
		@attr_action   = fetch( 'action', false ) # String
		@attr_value    = fetch( 'value' )         # String
		@attr_disabled = fetch( 'disabled' )      # true/false
		if @attr_value == nil then @attr_value = 'Submit' end

		if application.attributes_check
			check_undefined_attributes( 'action', 'value', 'disabled' )
		end
	end