RTL enhancements from Sewar. #3136

git-svn-id: https://develop.svn.wordpress.org/trunk@4258 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2006-09-27 00:51:17 +00:00
parent df5a935be4
commit 455dd7d763
13 changed files with 288 additions and 117 deletions

View File

@@ -155,12 +155,12 @@ $post_title = ('' == $post_title) ? "# $comment->comment_post_ID" : $post_title;
echo '<table class="widefat">
<thead>
<tr>
<th scope="col"><input type="checkbox" onclick="checkAll(document.getElementById(\'deletecomments\'));" /></th>
<th scope="col" style="text-align: left">' . __('Name') . '</th>
<th scope="col" style="text-align: left">' . __('E-mail') . '</th>
<th scope="col" style="text-align: left">' . __('IP') . '</th>
<th scope="col" style="text-align: left">' . __('Comment Excerpt') . '</th>
<th scope="col" colspan="3">' . __('Actions') . '</th>
<th scope="col" style="text-align: center"><input type="checkbox" onclick="checkAll(document.getElementById(\'deletecomments\'));" /></th>
<th scope="col">' . __('Name') . '</th>
<th scope="col">' . __('E-mail') . '</th>
<th scope="col">' . __('IP') . '</th>
<th scope="col">' . __('Comment Excerpt') . '</th>
<th scope="col" colspan="3" style="text-align: center">' . __('Actions') . '</th>
</tr>
</thead>';
foreach ($comments as $comment) {