Issue:
The upgrade to Localizer 3.x went well, but now TinyMCE stops working.

Presumed reason:
Localizer 3 now adds a language prefix to the URL (like Drupal 6 does). Typical TinyMCE visibility setting are:

  node/*
  user/*
  comment/* 

but the language prefix messes this up.

Solution:
Set TinyMCE visibility settings to:

*/node/*
*/user/*
*/comment/*

Comments

Roberto Gerola’s picture

Otherwise, change the row 1125 in Tinymce module in this way :
$path = drupal_lookup_path('alias', $_GET['q']); if(!$path) $path = $_GET['q'];

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.