liquid_cms 0.2.0.10 → 0.2.0.11

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,8 @@
1
+ == 0.2.0.11
2
+
3
+ * Fixes
4
+ * Fix translation issue in forms.
5
+
1
6
  == 0.2.0.10
2
7
 
3
8
  * Enhancements
@@ -1,10 +1,10 @@
1
1
  class SimpleForm::FormBuilder
2
2
  def commit_button_or_cancel
3
- @template.content_tag :div, :class => 'buttons' do
3
+ template.content_tag :div, :class => 'buttons' do
4
4
  String.new.tap do |html|
5
5
  html << button(:submit)
6
6
  html << " or "
7
- html << template.link_to(t('simple_form.buttons.cancel'), :back, :class => 'cancel')
7
+ html << template.link_to(template.t('simple_form.buttons.cancel'), :back, :class => 'cancel')
8
8
  end
9
9
  end
10
10
  end
@@ -1,3 +1,3 @@
1
1
  module Cms
2
- VERSION = "0.2.0.10"
2
+ VERSION = "0.2.0.11"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: liquid_cms
3
3
  version: !ruby/object:Gem::Version
4
- hash: 75
4
+ hash: 73
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
9
  - 0
10
- - 10
11
- version: 0.2.0.10
10
+ - 11
11
+ version: 0.2.0.11
12
12
  platform: ruby
13
13
  authors:
14
14
  - Andrew Kaspick