roroacms 0.0.8 → 0.0.8.1
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/controllers/roroacms/application_controller.rb +1 -2
- data/lib/roroacms/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 369cdc421342523274a8a9248578d8f3f6210203
|
|
4
|
+
data.tar.gz: f73499d44ee5394bd81dd8c6b00593c358228380
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 43c94a94041cdaa5cbf97e17601f3004de58abc5483544888e0af2e23841b6e1f2ac42639a04fbe087721fff5cb6618b2b45e047d31df5eaf5eb3054a3f68b67
|
|
7
|
+
data.tar.gz: afdeffaf19dec5df59d0ee4d7cdb6845952a27553e1653f90a1ff96db1cbe1baf5139ecc6f28370dd2e4e448a739a1d59560e5863df1cb7327ab21a90639fedb
|
|
@@ -114,8 +114,7 @@ module Roroacms
|
|
|
114
114
|
# check that the setup is complete if not redirect to the setup area
|
|
115
115
|
|
|
116
116
|
def check_setup
|
|
117
|
-
|
|
118
|
-
redirect_to setup_index_path and return if session[:setup_complete].blank?
|
|
117
|
+
redirect_to setup_index_path and return if ( Setting.get('setup_complete') != 'Y' && params[:controller] != 'roroacms/setup' ) || session[:setup_complete].blank?
|
|
119
118
|
end
|
|
120
119
|
|
|
121
120
|
# add the home breadcrumb for the front end
|
data/lib/roroacms/version.rb
CHANGED