? misc/Thumbs.db ? themes/bluemarine/Thumbs.db ? themes/pushbutton/Thumbs.db Index: includes/common.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/common.inc,v retrieving revision 1.444 diff -u -r1.444 common.inc --- includes/common.inc 24 May 2005 06:00:20 -0000 1.444 +++ includes/common.inc 24 May 2005 12:53:02 -0000 @@ -1035,7 +1035,7 @@ if (!$action) { $action = request_uri(); } - return '
\n". $form ."\n
\n"; + return '
\n
\n". $form ."\n
\n
\n"; } /** Index: includes/theme.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/theme.inc,v retrieving revision 1.236 diff -u -r1.236 theme.inc --- includes/theme.inc 18 May 2005 21:12:16 -0000 1.236 +++ includes/theme.inc 23 May 2005 20:48:50 -0000 @@ -926,10 +926,8 @@ if (!is_null($extra)) { $output .= $extra; } - $output .= '
'; $output .= form_submit($yes ? $yes : t('Confirm')); $output .= l($no ? $no : t('Cancel'), $path); - $output .= "
\n"; $output .= form_hidden($name, 1); return form($output, 'post', NULL, array('class' => 'confirmation')); Index: modules/archive.module =================================================================== RCS file: /cvs/drupal/drupal/modules/archive.module,v retrieving revision 1.80 diff -u -r1.80 archive.module --- modules/archive.module 24 Apr 2005 16:34:32 -0000 1.80 +++ modules/archive.module 23 May 2005 21:02:46 -0000 @@ -234,9 +234,7 @@ $months = array(1 => t('January'), 2 => t('February'), 3 => t('March'), 4 => t('April'), 5 => t('May'), 6 => t('June'), 7 => t('July'), 8 => t('August'), 9 => t('September'), 10 => t('October'), 11 => t('November'), 12 => t('December')); $days = drupal_map_assoc(range(0, 31)); - $start = '
'; $start .= form_select('', 'year', ($year ? $year : date('Y')), $years). form_select('', 'month', ($month ? $month : date('m')), $months) . form_select('', 'day', ($day ? $day : date('d')), $days) . form_submit(t('Show')); - $start .= '
'; $output .= form($start); if ($year && $month && $day) { Index: modules/node.module =================================================================== RCS file: /cvs/drupal/drupal/modules/node.module,v retrieving revision 1.489 diff -u -r1.489 node.module --- modules/node.module 24 May 2005 06:00:21 -0000 1.489 +++ modules/node.module 24 May 2005 12:29:23 -0000 @@ -922,7 +922,7 @@ $form = form_select(NULL, 'operation', 'approve', $options, NULL, ($disabled ? 'disabled="disabled"' : '')); $form .= form_submit(t('Update'), 'op', ($disabled ? array('disabled' => 'disabled') : array())); - $output .= form_group(t('Update options'), "
$form
"); + $output .= form_group(t('Update options'), "$form"); $output .= ''; // Overview table: Index: modules/profile.module =================================================================== RCS file: /cvs/drupal/drupal/modules/profile.module,v retrieving revision 1.97 diff -u -r1.97 profile.module --- modules/profile.module 12 May 2005 16:20:36 -0000 1.97 +++ modules/profile.module 24 May 2005 12:30:47 -0000 @@ -387,7 +387,6 @@ $order = array_keys($sort); // Output multi-selector for date - $output = '
'; foreach ($order as $type) { switch ($type) { case 'day': @@ -402,7 +401,6 @@ } $output .= form_select('', $field->name .']['. $type, $edit[$field->name][$type], $options, '', 0, 0); } - $output .= '
'; return form_item(check_plain($field->title), $output, _profile_form_explanation($field), NULL, $field->required); } Index: modules/search.module =================================================================== RCS file: /cvs/drupal/drupal/modules/search.module,v retrieving revision 1.127 diff -u -r1.127 search.module --- modules/search.module 14 May 2005 17:26:02 -0000 1.127 +++ modules/search.module 24 May 2005 12:30:47 -0000 @@ -658,10 +658,8 @@ } $output = '
'; - $box = '
'; $box .= form_textfield('', 'keys', $keys, $prompt ? 40 : 20, 255); $box .= form_submit(t('Search')); - $box .= '
'; $output .= form_item($prompt, $box); $output .= '
'; Index: modules/watchdog.module =================================================================== RCS file: /cvs/drupal/drupal/modules/watchdog.module,v retrieving revision 1.122 diff -u -r1.122 watchdog.module --- modules/watchdog.module 24 Apr 2005 16:34:36 -0000 1.122 +++ modules/watchdog.module 24 May 2005 12:30:47 -0000 @@ -122,7 +122,7 @@ $rows[] = array(array('data' => $pager, 'colspan' => '7')); } - $output = '
'. form($form) .'
'; + $output = form($form); $output .= theme('table', $header, $rows); return $output;