mirror of https://github.com/rails/rails
Fixed that cached template loading would still check the file system to see if the file existed #258 [Andreas Schwarz]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@43 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
9a248a83b5
commit
6cc961555d
|
@ -1,5 +1,7 @@
|
||||||
*SVN*
|
*SVN*
|
||||||
|
|
||||||
|
* Fixed that cached template loading would still check the file system to see if the file existed #258 [Andreas Schwarz]
|
||||||
|
|
||||||
* Added options to tailor header tag, div id, and div class on ActiveRecordHelper#error_messages_for [josh]
|
* Added options to tailor header tag, div id, and div class on ActiveRecordHelper#error_messages_for [josh]
|
||||||
|
|
||||||
* Added graceful handling of non-alphanumeric names and misplaced brackets in input parameters [bitsweat]
|
* Added graceful handling of non-alphanumeric names and misplaced brackets in input parameters [bitsweat]
|
||||||
|
|
|
@ -238,7 +238,8 @@ module ActionView #:nodoc:
|
||||||
end
|
end
|
||||||
|
|
||||||
def template_exists?(template_path, extension)
|
def template_exists?(template_path, extension)
|
||||||
FileTest.exists?(full_template_path(template_path, extension))
|
(cache_template_loading && @@loaded_templates.has_key?(template_path)) ||
|
||||||
|
FileTest.exists?(full_template_path(template_path, extension))
|
||||||
end
|
end
|
||||||
|
|
||||||
def read_template_file(template_path)
|
def read_template_file(template_path)
|
||||||
|
|
Loading…
Reference in New Issue