Default options in method for hash

Is there better way to write this:

def render_column_title(column, options)    title = (options[:column_titles] || {})[column] || Inflector::humanize(column)    .... end

thanks, Bojan