method

safe_concat

rails latest stable - Class: ActionView::Helpers::TextHelper
safe_concat(string)
public

No documentation available.

# File actionview/lib/action_view/helpers/text_helper.rb, line 67
      def safe_concat(string)
        output_buffer.respond_to?(:safe_concat) ? output_buffer.safe_concat(string) : concat(string)
      end