Commit 3de2e914ebf1dcd626e6e3dbbed20abe20e1fcf3

Authored by Andrey Karpikov
1 parent e2291011

check checked

@@ -127,6 +127,8 @@ module Kanjai @@ -127,6 +127,8 @@ module Kanjai
127 when '###CONTENT###' 127 when '###CONTENT###'
128 page_content = get_html_by_json_client(page_data) 128 page_content = get_html_by_json_client(page_data)
129 layer.gsub!(marker, page_content) 129 layer.gsub!(marker, page_content)
  130 + layer.gsub!('checked="false"', '')
  131 + layer.gsub!("checked='false'", '')
130 when '###META_TITLE###' 132 when '###META_TITLE###'
131 layer.gsub!(marker, page_data.meta_title.to_s) 133 layer.gsub!(marker, page_data.meta_title.to_s)
132 when '###META_DESCRIPTION###' 134 when '###META_DESCRIPTION###'
1 module Kanjai 1 module Kanjai
2 - VERSION = "0.0.273" 2 + VERSION = "0.0.274"
3 end 3 end