PluginProbe
FeedWordPress / 2009.0618
FeedWordPress v2009.0618
trunk 0.8 0.9 0.91 0.95 0.96 0.97 0.98 0.981 0.99 0.991 0.992 0.993 2008.1030 2008.1101 2008.1105 2008.1214 2009.0612 2009.0613 2009.0618 2009.0707 2009.1111 2009.1112 2010.0127 2010.0528 All 65 releases
← All changes | admin-ui.php +4 -2 2009.06122009.0618 View file →
@@ -114,14 +114,16 @@
114 114 </p>
115 115 </div>
116 116
117 117 <ul id="category-tabs">
118 - <li class="ui-tabs-selected"><a href="#categories-all" tabindex="3"><?php _e( 'All posts' ); ?></a>
118 + <?php /* ui-tabs-selected in WP 2.7 CSS = tabs in WP 2.8 CSS. Thank you, o brilliant wordsmiths of the WordPress 2.8 stylesheet... */ ?>
119 + <li class="ui-tabs-selected tabs"><a href="#categories-all" tabindex="3"><?php _e( 'All posts' ); ?></a>
119 120 <p style="font-size:smaller;font-style:bold;margin:0">Give <?php print $object; ?> these categories</p>
120 121 </li>
121 122 </ul>
122 123
123 -<div id="categories-all" class="ui-tabs-panel">
124 +<?php /* ui-tabs-panel in WP 2.7 CSS = tabs-panel in WP 2.8 CSS. Thank you, o brilliant wordsmiths of the WordPress 2.8 stylesheet... */ ?>
125 +<div id="categories-all" class="ui-tabs-panel tabs-panel">
124 126 <ul id="categorychecklist" class="list:category categorychecklist form-no-clear">
125 127 <?php fwp_category_checklist(NULL, false, $checked) ?>
126 128 </ul>
127 129 </div>