caboose-cms 0.8.32 → 0.8.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0f8e6e460ab612819a6fb571f167b4a571a7aa40
|
|
4
|
+
data.tar.gz: edf375ed1672cdbc850b2bf7c223eb87a4568249
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dd495f907bb895bb88bbe890f55ca67e36c2859de8c8681922539698c73ad891cc62f33b0ee947d24d0e1e0985ce4d7f5d2326333243534c928cb23d0078b168
|
|
7
|
+
data.tar.gz: 866b36392e1f00bf6e303f638413d9f4ee9e4242d2a6fa03a0d9c3f21e69d652c5e19026fd0373dceb129f877a4b176ae8a87f6a1b03b3c670f937eafc00e590
|
|
@@ -163,7 +163,7 @@ module Caboose
|
|
|
163
163
|
bt = BlockType.find(params[:id])
|
|
164
164
|
options = []
|
|
165
165
|
if bt.options_function && bt.options_function.length > 0
|
|
166
|
-
options = bt.render_options
|
|
166
|
+
options = bt.render_options(@site.id)
|
|
167
167
|
elsif bt.options
|
|
168
168
|
options = bt.options.strip.split("\n").collect { |line| { 'value' => line, 'text' => line }}
|
|
169
169
|
end
|
data/lib/caboose/version.rb
CHANGED