imagine_cms 3.0.32 → 3.0.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 +4 -4
- data/app/assets/images/interface/arrow_next.gif +0 -0
- data/app/assets/images/interface/arrow_previous.gif +0 -0
- data/app/controllers/cms/content_controller.rb +1 -1
- data/app/controllers/management/cms_controller.rb +1 -1
- data/app/views/imagine_cms/_header.html.erb +1 -1
- data/lib/imagine_cms/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3bf7289207050c175c1be6bc9765ac9836203aff
|
4
|
+
data.tar.gz: d8e9377fc8fcbfab30b47ee2f668e0b046a02a62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d0cc92cc05d455cf3239d07a816b3ffe04f8e4fe7bdbc99ea5c2a870f64f256ae3585b26bcf0540a0d079a44246fb86a08b04a0435c8336b10a8bcf168211237
|
7
|
+
data.tar.gz: 42addd9d003be5e8295db597a5a1518222f42190799c3b3c1d740b1c358c86638978ed00389c945523a19ea28dc6ceedbd01f8326893e5ae3321d25380d77f53
|
Binary file
|
Binary file
|
@@ -205,7 +205,7 @@ class Management::CmsController < Management::ApplicationController # :nodoc:
|
|
205
205
|
end
|
206
206
|
@pg.updated_by ||= session[:user_id]
|
207
207
|
@pg.updated_by_username ||= session[:user_username]
|
208
|
-
@pg.published_version = 0 if @pg.redirect_enabled
|
208
|
+
@pg.published_version = 0 if @pg.respond_to?(:redirect_enabled) && @pg.redirect_enabled
|
209
209
|
|
210
210
|
save_function = @pg.new_record? ? 'save' : 'save_without_revision'
|
211
211
|
|
data/lib/imagine_cms/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: imagine_cms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.33
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aaron Namba
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-07-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -165,6 +165,8 @@ files:
|
|
165
165
|
- app/assets/images/codepress/line-numbers.png
|
166
166
|
- app/assets/images/cropper/marqueeHoriz.gif
|
167
167
|
- app/assets/images/cropper/marqueeVert.gif
|
168
|
+
- app/assets/images/interface/arrow_next.gif
|
169
|
+
- app/assets/images/interface/arrow_previous.gif
|
168
170
|
- app/assets/images/interface/photo_next.gif
|
169
171
|
- app/assets/images/interface/photo_pause.gif
|
170
172
|
- app/assets/images/interface/photo_play.gif
|