Last modified: 2014-07-03 11:38:54 UTC

Wikimedia Bugzilla is closed!

Wikimedia migrated from Bugzilla to Phabricator. Bug reports are handled in Wikimedia Phabricator.
This static website is read-only and for historical purposes. It is not possible to log in and except for displaying bug reports and their history, links might be broken. See T69464, the corresponding Phabricator task for complete and up-to-date bug report information.
Bug 67464 - || inside links in tables are stripped unexpectedly
|| inside links in tables are stripped unexpectedly
Status: NEW
Product: MediaWiki
Classification: Unclassified
Parser (Other open bugs)
1.24rc
All All
: Normal normal (vote)
: ---
Assigned To: Nobody - You can work on this!
:
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2014-07-03 09:06 UTC by Liangent
Modified: 2014-07-03 11:38 UTC (History)
0 users

See Also:
Web browser: ---
Mobile Platform: ---
Assignee Huggle Beta Tester: ---


Attachments

Description Liangent 2014-07-03 09:06:55 UTC
Wikitext:

{|
|-
| [[File:Wiki.png|border||48px]]
|}

Actual:

<table>

<tr>
<td> <a href="/wiki/File:Wiki.png" class="image" title="border 48px"><img alt="border 48px" src="//upload.wikimedia.org/wikipedia/zh/b/bc/Wiki.png" width="135" height="155" data-file-width="135" data-file-height="155" /></a>
</td></tr></table>

Expected:

<table>

<tr>
<td> <a href="/wiki/File:Wiki.png" class="image"><img alt="Wiki.png" src="//upload.wikimedia.org/wikipedia/zh/thumb/b/bc/Wiki.png/48px-Wiki.png" width="48" height="55" class="thumbborder" srcset="//upload.wikimedia.org/wikipedia/zh/thumb/b/bc/Wiki.png/72px-Wiki.png 1.5x, //upload.wikimedia.org/wikipedia/zh/thumb/b/bc/Wiki.png/96px-Wiki.png 2x" data-file-width="135" data-file-height="155" /></a></td></tr></table>

Or normal links:

{|
|-
| [[abc|1||2]]
|}

Actual:

<table>

<tbody><tr>
<td> <a class="mw-redirect" title="Abc" href="/wiki/Abc">1</a></td>
<td>2
</td></tr></tbody></table>

Expected:

<table>

<tbody><tr>
<td> <a class="mw-redirect" title="Abc" href="/wiki/Abc">1||2</a></td></tr></tbody></table>

Note You need to log in before you can comment on or make changes to this bug.


Navigation
Links