[Openfirst-cvscommit] messenger inbox.php,1.14,1.15 index.php,1.14,1.15 messenger.php,1.13,1.14 newm
Brought to you by:
xtimg
From: <xt...@us...> - 2004-02-14 15:30:39
|
Update of /cvsroot/openfirst/messenger In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31386 Modified Files: inbox.php index.php messenger.php newmsg.php viewmsg.php Log Message: Fix all license information in module (Bug Report Credit: Daniel Schilling of 1006), add wrappers for future functionality. Index: inbox.php =================================================================== RCS file: /cvsroot/openfirst/messenger/inbox.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** inbox.php 24 Dec 2003 21:07:20 -0000 1.14 --- inbox.php 14 Feb 2004 15:24:04 -0000 1.15 *************** *** 16,23 **** * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License --- 16,19 ---- Index: index.php =================================================================== RCS file: /cvsroot/openfirst/messenger/index.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** index.php 24 Dec 2003 21:15:55 -0000 1.14 --- index.php 14 Feb 2004 15:24:04 -0000 1.15 *************** *** 16,23 **** * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License --- 16,19 ---- *************** *** 36,40 **** <th width="126">User Level</th> <th width="148">Name</th> ! <th width="312">Currently Previewing</th> <th width="98">Options</th> </tr> --- 32,39 ---- <th width="126">User Level</th> <th width="148">Name</th> ! <?php if(function_exists("location_by_address")) { ?> ! <th width="148">Location</th> ! <?php } ?> ! <th width="312">Currently Viewing</th> <th width="98">Options</th> </tr> *************** *** 58,61 **** --- 57,63 ---- ?> </td> + <?php if(function_exists("location_by_address")) { ?> + <th><?php echo(location_by_address($_SERVER["REMOTE_ADDR"])); ?></th> + <?php } ?> <td><?php echo $userinf->Location; ?></td> <td> Index: messenger.php =================================================================== RCS file: /cvsroot/openfirst/messenger/messenger.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** messenger.php 24 Dec 2003 21:07:20 -0000 1.13 --- messenger.php 14 Feb 2004 15:24:04 -0000 1.14 *************** *** 16,23 **** * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License --- 16,19 ---- Index: newmsg.php =================================================================== RCS file: /cvsroot/openfirst/messenger/newmsg.php,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** newmsg.php 24 Dec 2003 21:07:20 -0000 1.16 --- newmsg.php 14 Feb 2004 15:24:04 -0000 1.17 *************** *** 16,23 **** * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License --- 16,19 ---- *************** *** 67,70 **** --- 63,70 ---- } + if(function_exists("send_message")) { + send_message($receiver->user, "You have a new message waiting in your messenger inbox. $home/$basepath/messenger/inbox.php", "all"); + } + echo("<br><br><br><center>Message has been sent! [ <a href='inbox.php'>Inbox</a> ]<br><br>"); die(include_once($footer)); Index: viewmsg.php =================================================================== RCS file: /cvsroot/openfirst/messenger/viewmsg.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** viewmsg.php 24 Dec 2003 21:07:20 -0000 1.14 --- viewmsg.php 14 Feb 2004 15:24:04 -0000 1.15 *************** *** 16,23 **** * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License --- 16,19 ---- |