Add 'edit list' type option widget
[squirrelmail.git] / templates / default / read_message_body.tpl
1 <?php
2 /**
3 * read_message_body.tpl
4 *
5 * Template for displaying the message body.
6 *
7 * The following variables are available in this template:
8 * $message_body - Entire message body, scrubbed, formatted, etc.
9 *
10 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
11 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
12 * @version $Id$
13 * @package squirrelmail
14 * @subpackage templates
15 */
16
17 /** add required includes **/
18
19 /** extract template variables **/
20 extract($t);
21
22 /** Begin template **/
23 if (!empty($plugin_output['read_body_top'])) echo $plugin_output['read_body_top'];
24 ?>
25 <div class="readBody">
26 <table cellspacing="0" class="table2">
27 <tr>
28 <td>
29 <?php echo $message_body; ?>
30 </td>
31 </tr>
32 </table>
33 <table cellspacing="0" class="spacer">
34 <tr>
35 <td>
36 </td>
37 </tr>
38 </table>
39 </div>