diff options
author | Louise Crow <louise.crow@gmail.com> | 2012-10-29 13:07:55 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2012-10-29 13:07:55 +0000 |
commit | 3d8c7eb13cf6503cdd34c99fe2a745aaf999599f (patch) | |
tree | fdb5b1e49056f6f2888b87338b60e70d440e66b5 /app/controllers/request_controller.rb | |
parent | 46c160d3b7b121ccda404c56e2cc54f48b16703d (diff) | |
parent | 8bd85eb0b35211a653243ec740a9b3a9368e882f (diff) |
Merge branch 'feature/nils_in_config' into develop
Diffstat (limited to 'app/controllers/request_controller.rb')
-rw-r--r-- | app/controllers/request_controller.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/request_controller.rb b/app/controllers/request_controller.rb index 3296db6b7..c732a4b32 100644 --- a/app/controllers/request_controller.rb +++ b/app/controllers/request_controller.rb @@ -44,7 +44,7 @@ class RequestController < ApplicationController end def show - if !Configuration::varnish_host.nil? + if !Configuration::varnish_host.blank? # If varnish is set up to accept PURGEs, then cache for a # long time long_cache @@ -876,7 +876,7 @@ class RequestController < ApplicationController Zip::ZipFile.open(file_path, Zip::ZipFile::CREATE) { |zipfile| convert_command = Configuration::html_to_pdf_command done = false - if File.exists?(convert_command) + if !convert_command.blank? && File.exists?(convert_command) url = "http://#{Configuration::domain}#{request_url(info_request)}?print_stylesheet=1" tempfile = Tempfile.new('foihtml2pdf') output = AlaveteliExternalCommand.run(convert_command, url, tempfile.path) |