Closed (fixed)
Project:
Wysiwyg
Version:
5.x-2.0-alpha1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
24 Oct 2008 at 14:47 UTC
Updated:
27 May 2010 at 20:57 UTC
Jump to comment: Most recent file
Comments
Comment #1
suthy commentedComment #2
sunThe cause is that Blog module in Drupal 5.x is using a unusual (wrong) form element to hold the input format selector.
Not sure how to fix this, needs further analysis.
If you can upgrade to 6.x, that would be recommended. This has been fixed there.
Comment #3
suthy commentedthanks for any help. we ended up just switching to the YUI editor
Comment #4
sunFortunately, this was easy to fix.
Comment #5
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.
Comment #6
wessex commentedI've just encountered this problem - will this patch still work on 5.x-1.1?
Comment #7
wessex commentedComment #8
sunThis was fixed/committed a long time ago.
Comment #9
elgreg commentedI also encountered this problem with 5.x.1.1. It was because I'd made my own content type called "blog" instead of using the built-in Drupal Blog module (it seemed like a lot of extra code and I was already using CCK). Choices are to either rename the content type to something besides blog (probably a good idea in case you ever want to enable the blog module in the future) or to patch wysiwyg to check to see if blog is enabled before it goes unsetting and setting things in the form_alter.
Comment #10
sunCommitted without testing. Thanks.
Congrats to your first CHANGELOG.txt entry. :)
Comment #11
wessex commentedI've just tried the latest update, 5.x-2.0-alpha1, and still don't get the TinyMCE WYSIWYG editor for the blog content type - it appears fine on all other content types, and I'm stumped.
I'm using the default blog content type and would really appreciate some tips on things to try!
Comment #12
englex commentedI had the same problem as wessex, with wysiwyg 5.x-2.0-alpha1 and TinyMCE 3.2.4.1 on a Drupal 5 site. After examining my debug output I could see why the patch code (which is now included in alpha1) does the workaround that it does for blogs, so it didn't make sense why it still wasn't working for blogs, but was fine for other content types.
In the end I resorted to hacking the offending line of blog.module (
$form['body_filter']['filter']... ) then commenting out the patch-code from wysiwyg.module, which took all of about 5 minutes and has been working perfectly since.Not the nice best-practice fix I wanted obviously, but for anyone reading this who is as frustrated as I was then you could try that to get you through, but remember it would be liable to being overwritten by future updates.
Comment #13
goosemagoo commentedI had same/similar problem and a lot of searching indicated Imagepicker was the problem. Either disable the whole module or uncheck (in the image picker options) the content types where the problem occurs. Dunno why but works for me.