[Openfirst-cvscommit] messenger viewmsg.php,1.11,1.12 messenger.php,1.10,1.11 index.php,1.10,1.11 in
Brought to you by:
xtimg
From: <dav...@us...> - 2003-12-23 04:17:02
|
Update of /cvsroot/openfirst/messenger In directory sc8-pr-cvs1:/tmp/cvs-serv19176 Modified Files: viewmsg.php messenger.php index.php inbox.php Log Message: Graphical changes, making good use of members icon folders to spice up the design. Index: viewmsg.php =================================================================== RCS file: /cvsroot/openfirst/messenger/viewmsg.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** viewmsg.php 2 Dec 2003 23:07:06 -0000 1.11 --- viewmsg.php 23 Dec 2003 04:16:58 -0000 1.12 *************** *** 47,51 **** <p>If this message contains profanity or abusive material then please contact the webmaster!</p> ! <table width="597"> <tr> <th width="127"> </th> --- 47,51 ---- <p>If this message contains profanity or abusive material then please contact the webmaster!</p> ! <table width="597" cellpadding="4"> <tr> <th width="127"> </th> *************** *** 53,57 **** </tr> <tr> ! <th>Sender</th> <td><a href='../members/profile.php?ID=<?php echo $msg->Sender ?>'><?php echo("$msg->Sender"); $querymember = ofirst_dbquery("SELECT firstname, lastname FROM ofirst_members WHERE user = '$msg->Sender';"); --- 53,57 ---- </tr> <tr> ! <td><div align="right">Sender</div></td> <td><a href='../members/profile.php?ID=<?php echo $msg->Sender ?>'><?php echo("$msg->Sender"); $querymember = ofirst_dbquery("SELECT firstname, lastname FROM ofirst_members WHERE user = '$msg->Sender';"); *************** *** 60,74 **** </tr> <tr> ! <th>Subject</th> ! <td><?php if(function_exists("slur_block")){ echo slur_block(emoticon_translate($msg->Subject)); }else{ echo $msg->Subject; } ?></td> </tr> <tr> ! <th>Body</th> ! <td><?php if(function_exists("slur_block")){ echo slur_block(emoticon_translate($msg->Body)); }else{ echo $msg->Body; } ?></td> </tr> </table> - <p>[ <a href='inbox.php?DELETE=<?php echo $msg->ID; ?>'> Delete </a> ] [ - <a href="newmsg.php?RECIP=<?php echo $msg->Sender; ?>&SUBJECT=Re:%20<?php echo $msg->Subject; ?>">Reply</a> - ]</p> <?php include_once($footer); --- 60,80 ---- </tr> <tr> ! <td><div align="right">Subject</div></td> ! <td> ! <?php if(function_exists("slur_block")){ echo slur_block(emoticon_translate($msg->Subject)); }else{ echo $msg->Subject; } ?> ! </td> </tr> <tr> ! <td><div align="right">Body</div></td> ! <td> ! <?php if(function_exists("slur_block")){ echo slur_block(emoticon_translate($msg->Body)); }else{ echo $msg->Body; } ?> ! </td> ! </tr> ! <tr> ! <td> </td> ! <td><a href='inbox.php?DELETE=<?php echo $msg->ID; ?>'><img src='<?php echo $home.$basepath; ?>/members/icons/actions/button_cancel.png' border="0"></a> ! <a href="newmsg.php?RECIP=<?php echo $msg->Sender; ?>&SUBJECT=Re:%20<?php echo $msg->Subject; ?>"><img src='<?php echo $home.$basepath; ?>/members/icons/actions/mail_replay.png' border="0" alt="Reply"></a></td> </tr> </table> <?php include_once($footer); Index: messenger.php =================================================================== RCS file: /cvsroot/openfirst/messenger/messenger.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** messenger.php 22 Dec 2003 16:13:35 -0000 1.10 --- messenger.php 23 Dec 2003 04:16:58 -0000 1.11 *************** *** 99,103 **** <tr> <td height="25" style="background-color: #ffffff; color: #000000;" ! ><img src="<?php echo $basepath; ?>/messenger/msg.png" alt="New Message"> <br> <center>You have <b><?php echo $messages; ?></b> new Messages(s) in your visitor --- 99,103 ---- <tr> <td height="25" style="background-color: #ffffff; color: #000000;" ! ><img src="<?php echo $home.$basepath; ?>/members/icons/actions/mail_new.png" alt="New Message"> <br> <center>You have <b><?php echo $messages; ?></b> new Messages(s) in your visitor Index: index.php =================================================================== RCS file: /cvsroot/openfirst/messenger/index.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** index.php 6 Dec 2003 20:07:46 -0000 1.10 --- index.php 23 Dec 2003 04:16:58 -0000 1.11 *************** *** 50,54 **** ?> <tr> ! <td><img src="visitors.png" alt="Visitor"></td> <td><?php if ($userinf->Member == "none") { --- 50,54 ---- ?> <tr> ! <td><img src="<?php echo $home.$basepath; ?>/members/icons/actions/personal.png" alt="Visitor"></td> <td><?php if ($userinf->Member == "none") { Index: inbox.php =================================================================== RCS file: /cvsroot/openfirst/messenger/inbox.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** inbox.php 6 Dec 2003 20:07:46 -0000 1.11 --- inbox.php 23 Dec 2003 04:16:58 -0000 1.12 *************** *** 65,69 **** ?> <tr> ! <td><img src="msg.png" alt="Message"></td> <td><a href='viewmsg.php?ID=<?php echo $messages->ID; ?>'> <?php --- 65,69 ---- ?> <tr> ! <td><img src="<?php echo $home.$basepath; ?>/members/icons/actions/mail_new.png" alt="Message"></td> <td><a href='viewmsg.php?ID=<?php echo $messages->ID; ?>'> <?php |