aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2015-05-21 20:56:37 +0200
committerHarald Eilertsen <haraldei@anduin.net>2015-05-22 11:41:21 +0200
commita58d2511132a8b1b946a880d6077ff06e237a2cd (patch)
tree885bf001bc993281ccedeeefe13b77cd75e008e9
parent978f8f9f1b2881e4a3e279df2a09af2305ceeb9a (diff)
downloadcapistrano-refinerycms-a58d2511132a8b1b946a880d6077ff06e237a2cd.tar.gz
capistrano-refinerycms-a58d2511132a8b1b946a880d6077ff06e237a2cd.tar.bz2
capistrano-refinerycms-a58d2511132a8b1b946a880d6077ff06e237a2cd.zip
wymeditor_whitelist_tags is a hash.
-rw-r--r--README.md2
-rw-r--r--lib/capistrano/tasks/refinerycms.rake2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 2528ed5..a75b115 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ Refinery allows you to configure the Dragonfly backend used for processing image
This is only for adding extra functionality or modifications to the RefineryCMS engine.
-* `:refinerycms_wymeditor_whitelist_tags` -- Default: `[]`.
+* `:refinerycms_wymeditor_whitelist_tags` -- Default: `{}`.
* `:refinerycms_extra_javascript` -- Default: `''`.
* `:refinerycms_extra_stylesheet` -- Default: `''`.
* `:refinerycms_google_analytics_page_code` -- Default: `'UA-xxxxxx-x'`.
diff --git a/lib/capistrano/tasks/refinerycms.rake b/lib/capistrano/tasks/refinerycms.rake
index 0589058..b346f15 100644
--- a/lib/capistrano/tasks/refinerycms.rake
+++ b/lib/capistrano/tasks/refinerycms.rake
@@ -33,7 +33,7 @@ namespace :load do
set :refinerycms_google_analytics_page_code, 'UA-xxxxxx-x'
set :refinerycms_authenticity_token_on_frontend, true
set :refinerycms_dragonfly_secret, -> { SecureRandom.hex(24) }
- set :refinerycms_wymeditor_whitelist_tags, []
+ set :refinerycms_wymeditor_whitelist_tags, {}
set :refinerycms_extra_javascript, ''
set :refinerycms_extra_stylesheet, ''
set :refinerycms_backend_route, '/refinery'