Index: trunk/phase3/tests/phpunit/skins/SideBarTest.php |
— | — | @@ -106,7 +106,10 @@ |
107 | 107 | ); |
108 | 108 | |
109 | 109 | } |
110 | | - /** bug 33321 */ |
| 110 | + /** |
| 111 | + * bug 33321 - Make sure there's a | after transforming. |
| 112 | + * @group Database |
| 113 | + */ |
111 | 114 | function testTrickyPipe() { |
112 | 115 | $this->assertSidebar( |
113 | 116 | array( 'Title' => array( |
Index: trunk/phase3/includes/Skin.php |
— | — | @@ -1246,7 +1246,7 @@ |
1247 | 1247 | $line = array_map( 'trim', explode( '|', $line, 2 ) ); |
1248 | 1248 | if ( count( $line ) !== 2 ) { |
1249 | 1249 | // Second sanity check, could be hit by people doing |
1250 | | - // funky stuff with parserfuncs... (bug 3321) |
| 1250 | + // funky stuff with parserfuncs... (bug 33321) |
1251 | 1251 | continue; |
1252 | 1252 | } |
1253 | 1253 | |