Skip to content
This repository was archived by the owner on Dec 2, 2022. It is now read-only.

Css compiler error #206

Closed
webbudesign opened this issue Mar 20, 2021 · 2 comments · Fixed by #218
Closed

Css compiler error #206

webbudesign opened this issue Mar 20, 2021 · 2 comments · Fixed by #218

Comments

@webbudesign
Copy link
Contributor

Hello, guys hope you well.

I found a problem and this affecting CSS compiler output. I used CSS rules like this .pfnavmenu li.selected > a, and it was working before. Now system exporting like this https://jmp.sh/quPmHj2 and this breaks the entire rule.

I am using Version 4.1.24 (Wordpress Release version)

@webbudesign
Copy link
Contributor Author

I found the problem.

$this->parent->compilerCSS .= esc_attr( $style_string );

You are using esc_attr() but this is removing <> characters.

$this->parent->outputCSS .= $style_string;

Also, you are not using esc_attr on output.

kprovance added a commit to svl-studios/redux-framework-4 that referenced this issue May 25, 2021
Signed-off-by: Kevin Provance <kevin.provance@gmail.com>
@kprovance
Copy link
Member

Fixed in the latest pull request, 4.1.27

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants