Ticket #2044 (closed Bug: fixed)
I lose titles on my tables with the MediaWiki plugin
| Reported by: | svanpo | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | Project : MediaWiki+FCKeditor | Version: | SVN |
| Keywords: | Confirmed HasPatch | Cc: |
Description
When I switch to the Wikitext version, I lose the titles on my tables.
I use a nightly build (2008/03/05).
I realized a small patch for the /plugins/mediawiki/fckplugin.js file. You must change the line 317 "stringBuilder.push( '|' ) ;" with the text bellow (in the "table" switch/case of the _AppendNode function).
if (htmlNode.rows[r].cells[c].tagName.toLowerCase()=="th") {
stringBuilder.push( '!' ) ;
} else {
stringBuilder.push( '|' ) ;
}
Best regards.
Change History
Note: See
TracTickets for help on using
tickets.