Add right_now_table_end action hook so plugins can add to the Right Now summary table. props Malaiac

git-svn-id: http://svn.automattic.com/wordpress/trunk@9431 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2008-10-31 08:00:47 +00:00
parent 3a230bff18
commit 3503d95ba4
1 changed files with 3 additions and 1 deletions

View File

@ -245,7 +245,9 @@ function wp_dashboard_right_now() {
echo '<td class="b b-waiting">'.$num.'</td>';
echo '<td class="last t waiting">' . __ngettext( 'Awaiting Moderation', 'Awaiting Moderation', $num_comm['awaiting_moderation'] ) . '</td>';
echo "</tr>\n\t</table>\n\t</div>";
echo "</tr>";
do_action('right_now_table_end');
echo "\n\t</table>\n\t</div>";
echo "\n\t".'<div class="versions">';
$ct = current_theme_info();