This commit is contained in:
rick 2008-06-09 09:40:14 -04:00
Родитель 8a1e649170
Коммит e475cf78a4
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -34,10 +34,10 @@ module Technoweenie # :nodoc:
# by default paritions files into directories e.g. 0000/0001/image.jpg
# to turn this off set :partition => false
def partitioned_path(*args)
if respond_to?(:attachment_options) && attachment_options[:partition] == false
args
else
("%08d" % attachment_path_id).scan(/..../) + args
if respond_to?(:attachment_options) && attachment_options[:partition] == false
args
else
("%08d" % attachment_path_id).scan(/..../) + args
end
end