fix for html tags double quotes
This commit is contained in:
parent
46c67cc0ab
commit
e36bfddf0f
|
@ -22,7 +22,7 @@ class AdBannersController < ApplicationController
|
||||||
"height" => adbanner.height,
|
"height" => adbanner.height,
|
||||||
"width" => adbanner.width,
|
"width" => adbanner.width,
|
||||||
"caption" => caption,
|
"caption" => caption,
|
||||||
"context" => b.context,
|
"context" => (b.context.tr('"',"'") rescue ""),
|
||||||
"link" => b.out_link || "#",
|
"link" => b.out_link || "#",
|
||||||
"target" => target
|
"target" => target
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue