HTML fixes
git-svn-id: http://svn.automattic.com/wordpress/trunk@1961 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
914be4bf02
commit
50346fe5b0
|
@ -734,7 +734,7 @@ LINKS;
|
|||
<?php _e('Move to category:'); category_dropdown('category'); ?> <input name="move" type="submit" id="move" value="<?php _e('Go') ?>" />
|
||||
</td>
|
||||
<td align="right">
|
||||
<a href="#" onClick="checkAll(document.getElementById('links')); return false; "><?php _e('Toggle Checkboxes') ?></a>
|
||||
<a href="#" onclick="checkAll(document.getElementById('links')); return false; "><?php _e('Toggle Checkboxes') ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
|
@ -80,6 +80,7 @@ if (empty($plugins)) {
|
|||
} else {
|
||||
$action = "<a href='plugins.php?action=activate&plugin=$plugin_file' title='".__('Activate this plugin')."' class='edit'>".__('Activate')."</a>";
|
||||
}
|
||||
$plugin_data['Description'] = wp_kses($plugin_data['Description'], array('a' => array('href' => array(),'title' => array()),'abbr' => array('title' => array()),'acronym' => array('title' => array()),'code' => array(),'em' => array(),'strong' => array()) ); ;
|
||||
echo "
|
||||
<tr $style>
|
||||
<td>{$plugin_data['Title']}</td>
|
||||
|
|
|
@ -459,7 +459,7 @@ case 'confirmdeletecomment':
|
|||
echo "<input type=\"hidden\" name=\"noredir\" value=\"1\" />\n";
|
||||
echo "<input type=\"submit\" value=\"" . __('Yes') . "\" />";
|
||||
echo " ";
|
||||
echo "<input type=\"button\" value=\"" . __('No') . "\" onClick=\"self.location='". get_settings('siteurl') ."/wp-admin/edit.php?p=$p&c=1#comments';\" />\n";
|
||||
echo "<input type=\"button\" value=\"" . __('No') . "\" onclick=\"self.location='". get_settings('siteurl') ."/wp-admin/edit.php?p=$p&c=1#comments';\" />\n";
|
||||
echo "</form>\n";
|
||||
echo "</div>\n";
|
||||
|
||||
|
|
|
@ -245,7 +245,7 @@ function addPanel()
|
|||
//]]>
|
||||
</script>
|
||||
<strong><?php _e('SideBar') ?></strong><br />
|
||||
<?php _e('Add the <a href="#" onClick="addPanel()">WordPress Sidebar</a>!') ?>
|
||||
<?php _e('Add the <a href="#" onclick="addPanel()">WordPress Sidebar</a>!') ?>
|
||||
<?php } elseif (($is_winIE) || ($is_macIE)) { ?>
|
||||
<strong><?php _e('SideBar') ?></strong><br />
|
||||
<?php __('Add this link to your favorites:') ?><br />
|
||||
|
|
Loading…
Reference in New Issue