Index: editors/tinymce.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/wysiwyg/editors/tinymce.inc,v
retrieving revision 1.24
diff -u -p -r1.24 tinymce.inc
--- editors/tinymce.inc	1 Feb 2009 09:20:48 -0000	1.24
+++ editors/tinymce.inc	10 Feb 2009 07:47:00 -0000
@@ -121,10 +121,14 @@ function wysiwyg_tinymce_settings($edito
     'entity_encoding' => 'raw',
     'mode' => 'none',
     'plugins' => array(),
-    'relative_urls' => FALSE,
     'theme' => $theme,
     'width' => '100%',
+    // Strict loading mode must be enabled; otherwise TinyMCE would use
+    // document.write() in IE and Chrome.
     'strict_loading_mode' => TRUE,
+    // TinyMCE's URL conversion magic breaks Drupal modules that use a special
+    // syntax for paths. This makes 'relative_urls' obsolete.
+    'convert_urls' => FALSE,
   );
   if (isset($config['apply_source_formatting'])) {
     $init['apply_source_formatting'] = $config['apply_source_formatting'];
