Entering Microsoft characters (aka illegal chars) will crash the outline designer. It won't hurt any data, it just won't open any outline that has illegal characters in the title (like the funny Word quotation marks).
Also, characters aren't escaped correctly with single and double slashes which can cause titles to get cut off in some rare instances of using funny characters in Drupal titles.
Comments
Comment #1
dagmarI have found the reason for this bug. But I don't know how to solve it.
The problem is that outline designer uses serialize function to pass the info to the js script.
When a string have non ascii - 128 characters serialize prints something like this.
If we use unserialize to get the original string, all words are unserialized correctly
The problems is that javascript file uses PHP_Unserialize to get the original string and it doesn't take care about the diference of lengths
I think that the solution is use drupal_to_js instead of print serialize but this implies rewrite a lot of code.
Comment #2
btopro commentedVery true. I've recently fixed this issue in the Drupal 6 version but it was a total rewrite of...everything and I have no plans of going back and supporting the 5 version beyond what it is currently as we're upgrading everything to 6 for spring semester.
Comment #3
btopro commentedMoving on to D6, it's a total rewrite and I can't back-port anything. Doesn't matter though because this is no longer an issue in the 6 version.