? box_to_wrapper_core.patch ? taxonomy.module_3.diff ? database/database.prefixed.mysql ? includes/kdialog Index: modules/comment.module =================================================================== RCS file: /cvs/drupal/drupal/modules/comment.module,v retrieving revision 1.353 diff -u -F^f -r1.353 comment.module --- modules/comment.module 22 May 2005 21:14:59 -0000 1.353 +++ modules/comment.module 25 May 2005 12:28:57 -0000 @@ -413,17 +413,17 @@ function comment_reply($nid, $pid = NULL // should we show the reply box? if (node_comment_mode($nid) != 2) { - $output .= theme('box', t('Reply'), t("This discussion is closed: you can't post new comments.")); + $output .= theme('wrapper', t('Reply'), t("This discussion is closed: you can't post new comments."), 'comment', 'message'); } else if (user_access('post comments')) { $output .= theme('comment_form', array('pid' => $pid, 'nid' => $nid), t('Reply')); } else { - $output .= theme('box', t('Reply'), t('You are not authorized to post comments.')); + $output .= theme('wrapper', t('Reply'), t('You are not authorized to post comments.'), 'comment', 'message'); } } else { - $output .= theme('box', t('Reply'), t('You are not authorized to view comments.')); + $output .= theme('wrapper', t('Reply'), t('You are not authorized to view comments.'), 'comment', 'message'); } drupal_set_title(t('Add new comment')); @@ -1425,7 +1425,7 @@ function theme_comment_form($edit, $titl $form .= form_submit(t('Post comment')); } - return theme('box', $title, form($form, 'post', url('comment/reply/'. $edit['nid']))); + return theme('wrapper', $title, form($form, 'post', url('comment/reply/'. $edit['nid'])), 'comment-reply', 'message'); } function theme_comment_preview($comment, $links = '', $visible = 1) { @@ -1513,7 +1513,7 @@ function theme_comment_controls($thresho $output = form_item(NULL, $output, t('Select your preferred way to display the comments and click "Save settings" to activate your changes.')); } - return theme('box', t('Comment viewing options'), $output); + return theme('wrapper', t('Comment viewing options'), $output, 'comment-options', 'message'); } function comment_moderation_form($comment) { Index: modules/menu.module =================================================================== RCS file: /cvs/drupal/drupal/modules/menu.module,v retrieving revision 1.31 diff -u -F^f -r1.31 menu.module --- modules/menu.module 5 May 2005 22:22:46 -0000 1.31 +++ modules/menu.module 25 May 2005 12:28:57 -0000 @@ -380,7 +380,7 @@ function menu_overview_tree() { } $table = theme('item_list', $operations); $table .= theme('table', $header, menu_overview_tree_rows($mid)); - $output .= theme('box', $menu['items'][$mid]['title'], $table); + $output .= theme('wrapper', $menu['items'][$mid]['title'], $table, 'menu-table', 'admin-table'); } return $output; } Index: modules/search.module =================================================================== RCS file: /cvs/drupal/drupal/modules/search.module,v retrieving revision 1.127 diff -u -F^f -r1.127 search.module --- modules/search.module 14 May 2005 17:26:02 -0000 1.127 +++ modules/search.module 25 May 2005 12:28:58 -0000 @@ -578,10 +578,10 @@ function search_view() { $results = search_data($keys, $type); if ($results) { - $results = theme('box', t('Search results'), $results); + $results = theme('wrapper', t('Search results'), $results, 'search-results', 'search-results'); } else { - $results = theme('box', t('Your search yielded no results'), search_help('search#noresults')); + $results = theme('wrapper', t('Your search yielded no results'), search_help('search#noresults'), 'search-results', 'message'); } } else if (isset($_POST['edit'])) {