[Plugin: Code Snippets] textarea end tag causing formatting issues in snippet editor
-
I ran into this simple problem today. When the
</textarea>
tag is used as a string in your code it will be used to close the snippet editor’s textarea. This can be replicated using this line:
$test ="</textarea>some other stuff";
“some other stuff” will be printed after the snippet editor.simple fix for this without editing the code snippets plugin would be to break up the textarea tag in your code like so…
$test ="</"."textarea>some other stuff";
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘[Plugin: Code Snippets] textarea end tag causing formatting issues in snippet editor’ is closed to new replies.