From b1379bdf5bd35c0d816bc0eedad43341403ba73f Mon Sep 17 00:00:00 2001 From: kink Date: Sun, 22 Dec 2002 13:45:21 +0000 Subject: [PATCH] XHTML1.0 preparation for my favourite plugin ;) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4303 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- plugins/listcommands/mailout.php | 14 +++++++------- plugins/listcommands/setup.php | 24 ++++++++++++------------ 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/plugins/listcommands/mailout.php b/plugins/listcommands/mailout.php index 7e44bdd7..666f96ee 100644 --- a/plugins/listcommands/mailout.php +++ b/plugins/listcommands/mailout.php @@ -84,11 +84,11 @@ if ($idents != '' && $idents > 1) { echo $defaultmail; } -echo '
' -. '' -. '' -. '' -. '' -. '

' -. '

'; +echo '
' +. '' +. '' +. '' +. '' +. '

' +. '

'; ?> diff --git a/plugins/listcommands/setup.php b/plugins/listcommands/setup.php index e6df69d7..bb7be794 100644 --- a/plugins/listcommands/setup.php +++ b/plugins/listcommands/setup.php @@ -63,10 +63,10 @@ function plugin_listcommands_menu() { $url .= 'send_to=' . strtr($act,'?','&'); if ($compose_new_win == '1') { - $output[] = "" . $fieldsdescr[$cmd] . ''; + $output[] = "" . $fieldsdescr[$cmd] . ''; } else { - $output[] = '' . $fieldsdescr[$cmd] . ''; + $output[] = '' . $fieldsdescr[$cmd] . ''; } if ($cmd == 'post') { $url .= '&passed_id='.$passed_id. @@ -74,24 +74,24 @@ function plugin_listcommands_menu() { (isset($passed_ent_id)?'&passed_ent_id='.$passed_ent_id:''); $url .= '&action=reply'; if ($compose_new_win == '1') { - $output[] = "" . $fieldsdescr['reply'] . ''; + $output[] = "" . $fieldsdescr['reply'] . ''; } else { - $output[] = '' . $fieldsdescr['reply'] . ''; + $output[] = '' . $fieldsdescr['reply'] . ''; } } } else if ($proto == 'href') { - $output[] = '' - . $fieldsdescr[$cmd] . ''; + $output[] = '' + . $fieldsdescr[$cmd] . ''; } } if (count($output) > 0) { - echo ''; - echo html_tag('TD', '' . _("Mailing List") . ':  ', - 'right', '', 'VALIGN="MIDDLE" WIDTH="20%"') . "\n"; - echo html_tag('TD', '' . implode(' | ', $output) . '', - 'left', $color[0], 'VALIGN="MIDDLE" WIDTH="80%"') . "\n"; - echo ""; + echo ''; + echo html_tag('td', '' . _("Mailing List") . ':  ', + 'right', '', 'valign="middle" width="20%"') . "\n"; + echo html_tag('td', '' . implode(' | ', $output) . '', + 'left', $color[0], 'valign="middle" width="80%"') . "\n"; + echo ''; } } -- 2.25.1