I've never used tinymce before but I'm pretty sure this is a bug. The Block Format, which I assume is a drop down, does not display when editing. The other buttons I checked in settings do display, just no format block. I'm running tinymce cvs on Drupal 4.7 from the CVS.

Is there supposed to be a checkbox for this in the Buttons/Plug-ins section? There doesn't seem to be one.

Thanks.
Ben.

Comments

4p’s picture

I also noticed this error in // $Id: plugin_reg.php,v 1.6 2005/12/19 20:08:01 mathias Exp $

I fixed by changing line 57 in plugin_reg.php

from:
$plugins['font']['theme_advanced_buttons1'] = array(fontselect', 'fontsizeselect');
to:
$plugins['font']['theme_advanced_buttons1'] = array('formatselect', 'fontselect', 'fontsizeselect');

after you have changed the code and have checked 'formatselect' in the tinymce settingsscreen it should work.

Jos

matt westgate’s picture

Status: Active » Fixed

Fixed. Thanks!

Anonymous’s picture

Status: Fixed » Closed (fixed)