Hello and thanks for looking into it. I was able to resolve the issue by removing the “nl2br” function in admin.php:
//$description = nl2br($description);
$description = $description;
My new issue is that any text with single or double quotes is being escaped with a “\” after I go to edit.
This:
The letters \”U\” and \”V\” denote the axes of the 2D texture because \”X\”, \”Y\”
Should read as:
The letters “U” and “V” denote the axes of the 2D texture because “X”, “Y”
Thanks!
-
This reply was modified 2 years, 2 months ago by spmckee.
-
This reply was modified 2 years, 2 months ago by spmckee.