openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit af659c724330632d3ed8697173a68a6e2f942fb7
parent be38b7b175911f37018654de9fdc373556ac715d
Author: dankert <devnull@localhost>
Date:   Mon,  5 Nov 2007 21:59:49 +0100

Layout-?nderung f?r Notices.

Diffstat:
themes/default/include/html/window.inc.php | 16++++++++++++----
1 file changed, 12 insertions(+), 4 deletions(-)

diff --git a/themes/default/include/html/window.inc.php b/themes/default/include/html/window.inc.php @@ -72,20 +72,28 @@ { ?> <tr> - <td style="text-align:center;padding:20px;"><table style="border:1px solid black;"> + <td>&nbsp;</td> + </tr> + <tr> + <td align="center" style="margin-top:10px; margin-bottom:10px;padding:5px; text-align:center;"><table style="" border="0" width="100%"> <?php foreach( $notices as $notice ) { ?> <tr style="border-bottom:1px solid grey;"> - <td><img src="<?php echo $image_dir.'notice_'.$notice['status'].IMG_ICON_EXT ?>" style="padding:10px" /></td> - <td><?php if ($notice['name']!='') { ?><img src="<?php echo $image_dir.'icon_'.$notice['type'].IMG_ICON_EXT ?>" align="left" /><?php echo $notice['name'] ?>: <?php } ?><?php if ($notice['status']=='error') { ?><strong><?php } ?><?php echo $notice['text'] ?><?php if ($notice['status']=='error') { ?></strong><?php } ?> - <?php if (!empty($notice['log'])) { ?><pre><?php echo implode("\n",$notice['log']) ?></pre><?php } ?> + <td style="padding:0px;" width="30px"><img src="<?php echo $image_dir.'notice_'.$notice['status'].IMG_ICON_EXT ?>" style="padding:10px" /></td> + <td style="padding-top:10px;"><?php if ($notice['name']!='') { ?><img src="<?php echo $image_dir.'icon_'.$notice['type'].IMG_ICON_EXT ?>" align="left" /><?php echo $notice['name'] ?>: <?php } ?> + </td> + <td style="padding:10px;"><?php if ($notice['status']=='error') { ?><strong><?php } ?><?php echo $notice['text'] ?><?php if ($notice['status']=='error') { ?></strong><?php } ?> + <?php if (!empty($notice['log'])) { ?><pre><?php echo htmlentities(implode("\n",$notice['log'])) ?></pre><?php } ?> </td> </tr> <?php } ?> </table></td> </tr> + <tr> + <td colspan="2"><fieldset></fieldset></td> + </tr> <?php } ?>