操作
Bug(バグ) #4054
完了管理画面のトピックリストなどの画面でtr要素の閉じタグが不足している
開始日:
2017-01-16
期日:
進捗率:
100%
予定工数:
(合計: 0:00時間)
3.6 で発生するか:
Unknown (未調査)
[QA]バグ通知済:
いいえ
3.8 で発生するか:
Unknown (未調査)
opCommunityTopicPlugin 絞込条件:
説明
Overview (現象)¶
管理画面のトピックリスト (/pc_backend.php/communityTopic/topicList) の検索フォームは下記のようにマークアップされている:
<form method="get" action="/master/pc_backend.php/communityTopic/topicList"><table>
<tr>
<th><label for="communityTopic_id">トピックID</label></th>
<td><input type="text" id="communityTopic_id" name="communityTopic[id][text]" value="" /><br /> </td>
</tr>
<tr>
<th><label for="communityTopic_name">トピックタイトル</label></th>
<td><input type="text" id="communityTopic_name" name="communityTopic[name][text]" value="" /><br /> </td>
</tr>
<tr>
<th><label for="communityTopic_body">本文</label></th>
<td><input type="text" id="communityTopic_body" name="communityTopic[body][text]" value="" /><br /> </td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="検索" /></td>
</table>
</form>
この中で、検索ボタンが含まれている最後の列について tr 要素の閉じタグが存在せず、XHTML の構文として正しくない状態になっている。
トピックコメントリストやイベントリストなどにも同様の不具合がある。
Way to fix (修正内容)¶
</table>
の手前の行に </tr>
を追加する
操作