camaleon_cms 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of camaleon_cms might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +6 -0
- data/app/helpers/admin/application_helper.rb +1 -1
- data/app/views/layouts/admin/_footer.html.erb +1 -1
- data/lib/camaleon_cms/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: 9f195f6cff8d88d9a9bc9232825dc047bc95bd9c
|
4
|
+
data.tar.gz: d4e89d111af8947ac27e0d67c8b6d425745c94fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 699091da7711e9a2c5dccf80d13dd43ff3184a12ee61acdf060f280ea900936ed605a50294e7fe3d2a5cc4eb92903167e4701c726d1cf10197ee80797c9da793
|
7
|
+
data.tar.gz: 3f507c0b08044285f0b3f3ed9a1208090a2d79648d4955b1d89e5aa6be66740230bcd6ce1c48dd107e5bbf4e85108e170988d06a97f5780326441b373f03ab2d
|
data/README.md
CHANGED
@@ -16,7 +16,7 @@ module Admin::ApplicationHelper
|
|
16
16
|
def admin_system_notifications(args)
|
17
17
|
if Date.parse(current_site.get_option("date_notified", 2.days.ago).to_s) < Date.today
|
18
18
|
current_site.set_option("date_notified", Date.today)
|
19
|
-
url = "http://camaleon.tuzitio.com/plugins/camaleon_notification/?version=#{CamaleonCms::VERSION}&admin_locale=#{current_site.get_admin_language}&site=#{current_site.the_url}"
|
19
|
+
url = "http://camaleon.tuzitio.com/plugins/camaleon_notification/?version=#{"CamaleonCms::VERSION"}&admin_locale=#{current_site.get_admin_language}&site=#{current_site.the_url}"
|
20
20
|
Thread.new do
|
21
21
|
current_site.set_meta("date_notified_message", open(url).read)
|
22
22
|
ActiveRecord::Base.connection.close #closing connection
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<footer class="main-footer">
|
2
2
|
<div class="pull-right hidden-xs">
|
3
|
-
<b>Version</b>
|
3
|
+
<b>Version</b> 1.x <%#= CamaleonCms::VERSION %>
|
4
4
|
</div>
|
5
5
|
<strong>Copyright © 2015-2016 <a href="http://camaleon.tuzitio.com">Camaleon CMS.</a> </strong> All rights reserved.
|
6
6
|
</footer>
|
data/lib/camaleon_cms/version.rb
CHANGED