Greetings,

Another small one here. The the css path of the current drupal theme is being stored in $css as a full URL. The current code is still testing whether the stylesheet exists with file_exists(). This fails with the full URL and no css settings are being passed to tinymce. Why did you switch to the full URL?

Also after a bit of hair pulling, I realized I needed to update img_assist to work with the newer tinymce modules. It might be nice to include that little tidbit with the latest releases. My appologies if you did state that somewhere and I missed it.

mitomac

CommentFileSizeAuthor
tinymce_css_settings.patch485 bytesmitomac

Comments

matt westgate’s picture

We switched to the full URL because some developers (myself included) could get the stylesheet to load otherwise.

I fixed this bug by adding the $base_url after the file_exists check passes instead of before.

Anonymous’s picture