]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/site_controller.rb
Merge remote-tracking branch 'upstream/pull/5096'
[rails.git] / app / controllers / site_controller.rb
index 15ffe58a2616765eac3b34474b9dd0542447cb33..58f0a11c9340bbd796082622f3d6dcdbe852d13d 100644 (file)
@@ -110,6 +110,7 @@ class SiteController < ApplicationController
   end
 
   def copyright
   end
 
   def copyright
+    @title = t ".title"
     @locale = params[:copyright_locale] || I18n.locale
   end
 
     @locale = params[:copyright_locale] || I18n.locale
   end
 
@@ -137,7 +138,12 @@ class SiteController < ApplicationController
   end
 
   def preview
   end
 
   def preview
-    render :html => RichText.new(params[:type], params[:text]).to_html
+    if params[:text].blank?
+      flash.now[:warning] = t("layouts.nothing_to_preview")
+      render :partial => "layouts/flash"
+    else
+      render :html => RichText.new(params[:type], params[:text]).to_html
+    end
   end
 
   def id
   end
 
   def id