You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
(51) |
Apr
(688) |
May
(260) |
Jun
(108) |
Jul
(42) |
Aug
|
Sep
(2) |
Oct
|
Nov
(74) |
Dec
(217) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
(3) |
Jun
(6) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2004 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
(8) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
From: Lo?c C. <lo...@us...> - 2001-05-16 20:55:41
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib In directory usw-pr-cvs1:/tmp/cvs-serv4506/chat/lib Modified Files: smilies.lib.php3 login.lib.php3 Log Message: Passwords are no more crypted Index: smilies.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/smilies.lib.php3,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** smilies.lib.php3 2001/05/07 21:13:45 1.11 --- smilies.lib.php3 2001/05/16 20:55:37 1.12 *************** *** 88,92 **** // Add the 'reserved' smiley if required ! if (isset($dbSessionVars) && !empty($dbSessionVars['pwdHash']) && !ereg('[/:\*?"<>|]', $dbSessionVars['nick']) && ($prop = @getImageSize('./images/smilies/reserved/' . $dbSessionVars['nick'] . '.gif'))) --- 88,92 ---- // Add the 'reserved' smiley if required ! if (isset($dbSessionVars) && !empty($dbSessionVars['password']) && !ereg('[/:\*?"<>|]', $dbSessionVars['nick']) && ($prop = @getImageSize('./images/smilies/reserved/' . $dbSessionVars['nick'] . '.gif'))) Index: login.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/login.lib.php3,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** login.lib.php3 2001/04/27 18:29:44 1.6 --- login.lib.php3 2001/05/16 20:55:37 1.7 *************** *** 39,51 **** $authUsername = pmcHandleMagicQuotes($authUsername, '1', '', 'del'); if (!empty($authPassword)) ! $submitType = pmcHandleMagicQuotes($authPassword, '1', '', 'del'); // Ensures the password is a correct one $dbLoginLink = new pmcDB; $dbLoginLink->query("SELECT password, perms FROM " . C_REG_TBL . " WHERE username = '". pmcSlashSingleQuotes($authUsername) . "' LIMIT 1"); ! if (list($pwdHash, $perms) = $dbLoginLink->nextRecord()) { ! // Valid password ! if ($pwdHash == md5($authPassword)) { // Ensure the one who lauches the admin.php3 script is the admin --- 39,53 ---- $authUsername = pmcHandleMagicQuotes($authUsername, '1', '', 'del'); if (!empty($authPassword)) ! $authPassword = pmcHandleMagicQuotes($authPassword, '1', '', 'del'); // Ensures the password is a correct one $dbLoginLink = new pmcDB; $dbLoginLink->query("SELECT password, perms FROM " . C_REG_TBL . " WHERE username = '". pmcSlashSingleQuotes($authUsername) . "' LIMIT 1"); ! if (list($storedPassword, $perms) = $dbLoginLink->nextRecord()) { ! $storedPassword = pmcHandleMagicQuotes($storedPassword, '', '1', 'del'); ! // Validates the password submitted (compare also its md5 hash for ! // compatibility with old releases) ! if ($storedPassword == $authPassword || $storedPassword == md5($authPassword)) { // Ensure the one who lauches the admin.php3 script is the admin |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:55:41
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv4506/chat Modified Files: profile_reg.php3 profile_edit.php3 Log Message: Passwords are no more crypted Index: profile_reg.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_reg.php3,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** profile_reg.php3 2001/04/23 19:50:13 1.11 --- profile_reg.php3 2001/05/16 20:55:37 1.12 *************** *** 179,184 **** } - $pwdHash = md5($password); - // Sends the password to the e-mail address if required if (C_EMAIL_PASWD) --- 179,182 ---- *************** *** 205,212 **** if (empty($error)) { $regQuery = 'INSERT INTO ' . C_REG_TBL . ' ' . '(username, latin1, password, firstname, lastname, country, website, email, showemail, perms, rooms, reg_time, ip, gender) ' . 'VALUES (' ! . "'$slashedNick', '$latin1', '$pwdHash', '" . pmcSlashSingleQuotes($firstName) . "', '" . pmcSlashSingleQuotes($lastName) . "', '" . pmcSlashSingleQuotes($spokenLang) . "', '$webSite', '$email', $showEmail, 'user', '', " . time() . ", '$ip', '$gender'" . ')'; $dbLink->query($regQuery); --- 203,211 ---- if (empty($error)) { + $slashedPswd = pmcSlashSingleQuotes(str_replace('\\', '\\\\', $password)); $regQuery = 'INSERT INTO ' . C_REG_TBL . ' ' . '(username, latin1, password, firstname, lastname, country, website, email, showemail, perms, rooms, reg_time, ip, gender) ' . 'VALUES (' ! . "'$slashedNick', '$latin1', '$slashedPswd', '" . pmcSlashSingleQuotes($firstName) . "', '" . pmcSlashSingleQuotes($lastName) . "', '" . pmcSlashSingleQuotes($spokenLang) . "', '$webSite', '$email', $showEmail, 'user', '', " . time() . ", '$ip', '$gender'" . ')'; $dbLink->query($regQuery); *************** *** 215,219 **** $dbSessionVars['nick'] = $nick; ! $dbSessionVars['pwdHash'] = $pwdHash; dbSessionSave(); // The db link should be closed but this can't be done under Apache because --- 214,218 ---- $dbSessionVars['nick'] = $nick; ! $dbSessionVars['password'] = $password; dbSessionSave(); // The db link should be closed but this can't be done under Apache because Index: profile_edit.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_edit.php3,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** profile_edit.php3 2001/04/19 20:25:35 1.8 --- profile_edit.php3 2001/05/16 20:55:37 1.9 *************** *** 174,177 **** --- 174,178 ---- if (!isset($error)) { + $slashedPswd = pmcSlashSingleQuotes(str_replace('\\', '\\\\', $password)); $latin1 = (L_CHARSET == 'iso-8859-1') ? 1 : 0; $showEmail = (isset($showEmail) && $showEmail) ? 1 : 0; *************** *** 182,190 **** include('./lib/get_ip.lib.' . C_EXTENSION); - // Defines the password - $pwdHash = md5($password); - // Updates the profile ! $dbLink->query("UPDATE " . C_REG_TBL . " SET username = '$slashedNick', latin1 = '$latin1', password = '$pwdHash', firstname='" . pmcSlashSingleQuotes($firstName) . "', lastname = '" . pmcSlashSingleQuotes($lastName) . "', country = '" . pmcSlashSingleQuotes($spokenLang) . "', website = '$webSite', email = '$email', showemail = $showEmail, reg_time = " . time() . ", ip = '$ip', gender = '$gender' WHERE username = '" . pmcSlashSingleQuotes($dbSessionVars['authUsername']) . "'"); if ($dbSessionVars['authPassword'] != $password) $dbSessionVars['authPassword'] = $password; --- 183,188 ---- include('./lib/get_ip.lib.' . C_EXTENSION); // Updates the profile ! $dbLink->query("UPDATE " . C_REG_TBL . " SET username = '$slashedNick', latin1 = '$latin1', password = '$slashedPswd', firstname='" . pmcSlashSingleQuotes($firstName) . "', lastname = '" . pmcSlashSingleQuotes($lastName) . "', country = '" . pmcSlashSingleQuotes($spokenLang) . "', website = '$webSite', email = '$email', showemail = $showEmail, reg_time = " . time() . ", ip = '$ip', gender = '$gender' WHERE username = '" . pmcSlashSingleQuotes($dbSessionVars['authUsername']) . "'"); if ($dbSessionVars['authPassword'] != $password) $dbSessionVars['authPassword'] = $password; *************** *** 380,384 **** { $dbSessionVars['nick'] = $nick; ! $dbSessionVars['pwdHash'] = $pwdHash; $toUnreg = array('conservative', 'authUsername', 'authPassword'); dbSessionUnregister($toUnreg); --- 378,382 ---- { $dbSessionVars['nick'] = $nick; ! $dbSessionVars['password'] = $password; $toUnreg = array('conservative', 'authUsername', 'authPassword'); dbSessionUnregister($toUnreg); |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:55:41
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv4506/chat/lib/index_libs Modified Files: index_validation.lib.php3 do_enter_db_work.lib.php3 Log Message: Passwords are no more crypted Index: index_validation.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/index_validation.lib.php3,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** index_validation.lib.php3 2001/04/19 21:05:04 1.9 --- index_validation.lib.php3 2001/05/16 20:55:37 1.10 *************** *** 51,55 **** * the chat * @global string the password entered by this user - * @global string the md5 hash of this password * * @access public --- 51,54 ---- *************** *** 61,65 **** global $dbLink; global $nick, $slashedNick; ! global $password, $pwdHash; $error1 = ''; --- 60,64 ---- global $dbLink; global $nick, $slashedNick; ! global $password; $error1 = ''; *************** *** 105,109 **** if ($error1 == '' && $requireReg) { ! if ($password == '' && $pwdHash == '') $error1 = ($isLoggedIn) ? L_ERR_USR_1 : L_ERR_USR_14; } --- 104,108 ---- if ($error1 == '' && $requireReg) { ! if ($password == '') $error1 = ($isLoggedIn) ? L_ERR_USR_1 : L_ERR_USR_14; } *************** *** 117,121 **** --- 116,123 ---- $isRegNick = (list($regUserPassword, $regNickPerms, $regNickModeratedRooms) = $dbLink->nextRecord()); if ($isRegNick) + { + $regUserPassword = pmcHandleMagicQuotes($regUserPassword, '', 1, 'del'); $regNickModeratedRooms = pmcHandleMagicQuotes($regNickModeratedRooms, '', 1, 'del'); + } $dbLink->cleanResults(); *************** *** 125,146 **** { // Reserved nick but no password submitted -> deny access ! if ($password == '' && $pwdHash == '') { ! $error1 = L_ERR_USR_3; } ! // Validates the password submitted ! else { ! if ($password != '') ! $pwdHash = md5($password); ! if ($pwdHash != $regUserPassword) ! { ! $isRegNick = false; ! $password = ''; ! $pwdHash = ''; ! $regNickPerms = 'user'; ! $regNickModeratedRooms = ''; ! $error1 = L_ERR_USR_4; ! } } } --- 127,143 ---- { // Reserved nick but no password submitted -> deny access ! if ($password == '') { ! $error1 = L_ERR_USR_3; } ! // Validates the password submitted (compare also its md5 hash for ! // compatibility with old releases) ! else if ($regUserPassword != $password && $regUserPassword != md5($password)) { ! $isRegNick = false; ! $password = ''; ! $regNickPerms = 'user'; ! $regNickModeratedRooms = ''; ! $error1 = L_ERR_USR_4; } } Index: do_enter_db_work.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/do_enter_db_work.lib.php3,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** do_enter_db_work.lib.php3 2001/05/05 21:50:14 1.15 --- do_enter_db_work.lib.php3 2001/05/16 20:55:37 1.16 *************** *** 86,93 **** /** ! * Sets the encrypted password and gets the ip off the user */ - if (empty($pwdHash)) - $pwdHash = ($isRegUser) ? md5($password) : ''; if (empty($ip)) include('./' . _CHAT_PATH .'lib/get_ip.lib.' . C_EXTENSION); --- 86,91 ---- /** ! * Gets the ip of the user */ if (empty($ip)) include('./' . _CHAT_PATH .'lib/get_ip.lib.' . C_EXTENSION); *************** *** 271,275 **** $dbSessionVars['jsVersion'] = $jsVersion; $dbSessionVars['nick'] = $nick; ! $dbSessionVars['pwdHash'] = $pwdHash; $dbSessionVars['roomType'] = $roomType; $dbSessionVars['currentRoom'] = $targetRoom; --- 269,273 ---- $dbSessionVars['jsVersion'] = $jsVersion; $dbSessionVars['nick'] = $nick; ! $dbSessionVars['password'] = $password; $dbSessionVars['roomType'] = $roomType; $dbSessionVars['currentRoom'] = $targetRoom; |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:54:35
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv4126/chat Added Files: profile_remind.php3 Log Message: Modifications related to the new password reminder feature --- NEW FILE --- <?php // // +--------------------------------------------------------------------------+ // | phpMyChat version 0.15.0 | // +--------------------------------------------------------------------------+ // | Copyright (c) 2000-2001 The phpHeaven-team | // +--------------------------------------------------------------------------+ // | License: GNU/GPL - http://www.gnu.org/copyleft/gpl.html | // +--------------------------------------------------------------------------+ // | This script allows to send a registered user his password if he has | // | forget it. | // +--------------------------------------------------------------------------+ // | From the phpMyChat project: | // | http://www.phpheaven.net/projects/phpMyChat/ | // | | // | Authors: the phpHeaven-team <te...@ph...> | // +--------------------------------------------------------------------------+ // // $Id: profile_remind.php3,v 1.1 2001/05/16 20:54:32 loic1 Exp $ // // Password reminder. // /** * Gets the extension for the php scripts */ if (!isset($PHP_SELF)) $PHP_SELF = $HTTP_SERVER_VARS['PHP_SELF']; define('C_EXTENSION', (substr($PHP_SELF, -1) == 3) ? 'php3' : 'php'); /** * Gets some core libraries */ require('./config/config.lib.' . C_EXTENSION); require('./lib/common.lib.' . C_EXTENSION); require('./lib/database/' . C_DB_TYPE . '.lib.' . C_EXTENSION); /** * Gets the names and values for variables sent or posted to this script * * Uses the 'pmcGrabGlobals()' and 'pmcHandleMagicQuotes()' function defined in * the 'chat/lib/common.lib.php3' library */ $toGrab = array('dbSessionId', '%POST'); pmcGrabGlobals($toGrab); // Unslashes values of variables sent to this script if (!empty($nick)) $nick = pmcHandleMagicQuotes($nick, '1', '', 'del'); /** * Start the session handler */ require('./lib/db_sessions.lib.' . C_EXTENSION); dbSessionInit( C_DB_TYPE, C_DB_HOST, C_DB_NAME, C_DB_USER, C_DB_PASS, C_SESS_TBL, C_SESS_DEL * 60, '' ); dbSessionStart(); $dbSessionDbLink->close(); unset($dbSessionDbLink); /** * Defines the language to be used */ require('./localization/languages.lib.' . C_EXTENSION); require('./localization/' . $dbSessionVars['lang'] . '/chat.loc'); /** * Sends HTTP headers * * The 'pmcHttpHeaders()' function is defined in the 'chat/lib/common.lib.php3' * library */ pmcHttpHeaders(L_CHARSET, true); /** * Validates the submitted form then send the password */ if (isset($submitType)) { if (C_NO_SWEAR) include('./lib/swearing.lib.' . C_EXTENSION); // Validates the nick if (!$isJsValidated && trim($nick) == '') { $error = L_ERR_USR_5; } else if (!$isJsValidated && ereg('[\, ]', $nick)) { $error = L_ERR_USR_16; } else if (C_NO_SWEAR && checkWords($nick, true)) { $error = L_ERR_USR_18; } // Get the password from the database and send it to the user else { $slashedNick = pmcSlashSingleQuotes($nick); $dbLink = new pmcDB; $dbLink->query("SELECT password, email FROM " . C_REG_TBL . " WHERE username = '$slashedNick'"); list($thePassword, $theEmail) = $dbLink->nextRecord(); $dbLink->cleanResults(); $dbLink->close(); // Sends the password to the e-mail address if (!empty($thePassword)) { $recipient = array($theEmail => array($nick, L_CHARSET)); $subject = '[' . APP_NAME . '] ' . L_EMAIL_VAL_1; $body = L_SET_2 . ': ' . $nick . "\n"; $body .= L_REG_7 . ': ' . pmcHandleMagicQuotes($thePassword, '', '1', 'del') . "\n\n"; $body .= L_EMAIL_VAL_2 . "\n"; $body .= C_CHAT_URL . "\n"; if (!defined('_LIB_PHPMYMAILER_LOADED')) { include('./lib/mailer.lib.' . C_EXTENSION); } $mailHandler = new PHPMYMAILER(C_REG_SENDER, C_REG_EMAIL); $mailHandler->pmmSendEmail( $recipient, L_CHARSET, $subject, $body); if (!$mailHandler->pmmIsSent) { $error = sprintf(L_EMAIL_VAL_ERR, C_REG_EMAIL, C_REG_SENDER); } else { $success = L_EMAIL_VAL_DONE; } unset($mailHandler); } // No registered user with the submitted nick else { $error = L_REG_49; } } } // end of the updating profile work /** * Initializes some variables that will be used to display the form */ if (!isset($submitType)) { $nick = (!empty($dbSessionVars['nick'])) ? $dbSessionVars['nick'] : ''; } else { if (isset($error)) { $warning = '<p class="error">' . $error . '</p>' . "\n"; } else if (isset($success)) { $warning = '<p class="success">' . $success . '</p>' . "\n"; } } /** * Displays the password reminder page * * Uses the 'pmcUrlForStyleSheet()' and the 'pmcSlashSingleQuotes()' functions * from the 'chat/lib/common.lib.php3' library */ // The url for the style sheet $cssUrl = pmcUrlForStyleSheet('style', L_CHARSET, (defined('L_FONT_NAME')) ? L_FONT_NAME : '', L_FONT_SIZE); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html dir="<?php echo((L_CHARSET == 'windows-1256') ? 'rtl' : 'ltr'); ?>"> <head> <title><?php echo(APP_NAME); ?></title> <link rel="stylesheet" href="<?php echo($cssUrl); ?>" type="text/css" /> <script type="text/javascript" language="javascript"> <!-- var jsErrorNick1 = '<?php echo(pmcSlashSingleQuotes(str_replace('\\', '\\\\', L_ERR_USR_5))); ?>'; var jsErrorNick2 = '<?php echo(pmcSlashSingleQuotes(str_replace('\\', '\\\\', L_ERR_USR_16))); ?>'; var formName = 'remindPassword'; // --> </script> <script src="lib/profile_work.lib.js" type="text/javascript" language="javascript"></script> </head> <body> <center> <?php // Form hasn't been submitted yet if (empty($submitType)) { ?> <br /> <form action="profile_remind.<?php echo(C_EXTENSION); ?>" method="post" autocomplete="off" name="remindPassword" onsubmit="return pmcRemindProfileValidate()"> <?php // Put the session id in an hidden field echo("\n" . dbSessionSID('POST') . "\n"); ?> <input type="hidden" name="isJsValidated" value="0" /> <table border="0" cellpadding="3" class="table"> <tr> <td align="center"> <table border="0"> <tr> <th colspan="2" class="tabTitle"><?php echo(L_REG_48); ?></th> </tr> <tr><td> </td></tr> <tr> <td align="right" valign="top" nowrap="nowrap"><?php echo(L_SET_2); ?> :</td> <td valign="top"> <input type="text" name="nick" size="11" maxlength="10" value="<?php echo(htmlspecialchars($nick)); ?>" /> </td> </tr> </table> <br /><br /> <input type="submit" name="submitType" value="<?php echo(L_REG_15); ?>" /> </td> </tr> </table> </form> <?php } else { echo("\n" . '<br /><br /><br /><br />' . $warning . "\n"); } ?> </center> </body> </html> |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:54:34
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib In directory usw-pr-cvs1:/tmp/cvs-serv4126/chat/lib Modified Files: profile_work.lib.js Log Message: Modifications related to the new password reminder feature Index: profile_work.lib.js =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/profile_work.lib.js,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** profile_work.lib.js 2001/04/19 21:05:04 1.3 --- profile_work.lib.js 2001/05/16 20:54:32 1.4 *************** *** 118,121 **** --- 118,153 ---- /** + * Validates briefly the nick inside the profile reminder form + */ + function pmcRemindProfileValidate() + { + // The replace function (js1.2) isn't supported -> no js tests are done + if (typeof(document.forms[formName].elements['nick'].value.replace) == 'undefined') + return true; + + var nickField = document.forms[formName].elements['nick']; + var reNick = /\\|,| /; + + if (nickField.value.replace(/ /g, '') == '') // nick is empty + { + nickField.value = ''; + nickField.focus(); + alert(jsErrorNick1); + return false; + } + else if (reNick.test(nickField.value)) // invalid characters in + { // the nick + nickField.focus(); + alert(jsErrorNick2); + return false; + } + + // All the tests have been succesfully passed -> submit the from + document.forms[formName].elements['isJsValidated'].value = 1; + return true; + } // end of the function 'pmcRemindProfileValidate()' + + + /** * Inserts the login and the password at the start page form */ |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:54:34
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv4126/chat/lib/index_libs Modified Files: start_page.lib.js main_index.lib.php3 Log Message: Modifications related to the new password reminder feature Index: start_page.lib.js =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/start_page.lib.js,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** start_page.lib.js 2001/05/10 11:45:36 1.9 --- start_page.lib.js 2001/05/16 20:54:32 1.10 *************** *** 163,167 **** + '?' + jsDbSessionSID; var popWidth = (name != 'admin') ? 350 : 510; ! var popHeight = (name != 'profile_del') ? 470 : 190; var popParams = 'width=' + popWidth + ',height=' + popHeight --- 163,167 ---- + '?' + jsDbSessionSID; var popWidth = (name != 'admin') ? 350 : 510; ! var popHeight = (name != 'profile_del' && name != 'profile_remind') ? 470 : 190; var popParams = 'width=' + popWidth + ',height=' + popHeight Index: main_index.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/main_index.lib.php3,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -r1.29 -r1.30 *** main_index.lib.php3 2001/05/04 16:26:28 1.29 --- main_index.lib.php3 2001/05/16 20:54:32 1.30 *************** *** 262,271 **** * Initializes misc. variables */ ! if (!isset($password)) $password = ''; ! if (dbSessionIsRegistered('pwdHash')) ! $pwdHash = $dbSessionVars['pwdHash']; ! if (!isset($pwdHash)) ! $pwdHash = ''; $isRegUser = false; $regUserPerms = 'user'; --- 262,273 ---- * Initializes misc. variables */ ! if (dbSessionIsRegistered('password')) ! { ! $password = $dbSessionVars['password']; ! } ! else if (!isset($password)) ! { $password = ''; ! } $isRegUser = false; $regUserPerms = 'user'; *************** *** 683,687 **** </tr> <tr class="chatCell"> ! <td class="chatCell"> </td> </tr> --- 685,689 ---- </tr> <tr class="chatCell"> ! <td height="5" class="chatCell"></td> </tr> *************** *** 691,704 **** </tr> <tr class="chatCell"> <td align="center" colspan="2" class="chatCell"> - <br /> - <a href="<?php echo(_CHAT_PATH); ?>profile_reg.<?php echo(C_EXTENSION); ?>?<?php echo(dbSessionSID('GET')); ?>" target="profile_reg_popup" class="chatReg" onclick="pmcRegPopups('profile_reg'); return false"><?php echo(L_REG_3); ?></a> - | <a href="<?php echo(_CHAT_PATH); ?>profile_edit.<?php echo(C_EXTENSION); ?>?<?php echo(dbSessionSID('GET')); ?>" target="profile_edit_popup" class="chatReg" onclick="pmcRegPopups('profile_edit'); return false"><?php echo(L_REG_4); ?></a> <?php ! if (C_SHOW_DEL_PROF) { echo("\n"); ?> ! | <a href="<?php echo(_CHAT_PATH); ?>profile_del.<?php echo(C_EXTENSION); ?>?<?php echo(dbSessionSID('GET')); ?>" target="profile_del_popup" class="chatReg" onclick="pmcRegPopups('profile_del'); return false"><?php echo(L_REG_5); ?></a> <?php } --- 693,706 ---- </tr> <tr class="chatCell"> + <td height="5" class="chatCell"></td> + </tr> + <tr class="chatCell"> <td align="center" colspan="2" class="chatCell"> <?php ! if (C_MAIL_FUNCTION) { echo("\n"); ?> ! <a href="<?php echo(_CHAT_PATH); ?>profile_remind.<?php echo(C_EXTENSION); ?>?<?php echo(dbSessionSID('GET')); ?>" target="profile_remind_popup" class="chatReg" onclick="pmcRegPopups('profile_remind'); return false"><?php echo(L_REG_48); ?></a> <?php } *************** *** 710,714 **** <?php } ! echo("\n"); ?> --- 712,728 ---- <?php } ! echo("\n"); ! ?> ! <br /><br /> ! <a href="<?php echo(_CHAT_PATH); ?>profile_reg.<?php echo(C_EXTENSION); ?>?<?php echo(dbSessionSID('GET')); ?>" target="profile_reg_popup" class="chatReg" onclick="pmcRegPopups('profile_reg'); return false"><?php echo(L_REG_3); ?></a> ! | <a href="<?php echo(_CHAT_PATH); ?>profile_edit.<?php echo(C_EXTENSION); ?>?<?php echo(dbSessionSID('GET')); ?>" target="profile_edit_popup" class="chatReg" onclick="pmcRegPopups('profile_edit'); return false"><?php echo(L_REG_4); ?></a> ! <?php ! if (C_SHOW_DEL_PROF) ! { ! echo("\n"); ! ?> ! | <a href="<?php echo(_CHAT_PATH); ?>profile_del.<?php echo(C_EXTENSION); ?>?<?php echo(dbSessionSID('GET')); ?>" target="profile_del_popup" class="chatReg" onclick="pmcRegPopups('profile_del'); return false"><?php echo(L_REG_5); ?></a> ! <?php ! } echo("\n"); ?> *************** *** 721,725 **** ?> <tr class="chatCell"> ! <td colspan="2" class="ChatCell"> </td> </tr> --- 735,739 ---- ?> <tr class="chatCell"> ! <td height="5" colspan="2" class="ChatCell"></td> </tr> *************** *** 855,859 **** // 'savedMessagesLimit' ones may have been set repectively by the 'profile' and // the 'save' commands ! $toUnregister = array('pwdHash', 'conservative', 'savedMessagesLimit'); dbSessionUnregister($toUnregister); dbSessionSave(); --- 869,873 ---- // 'savedMessagesLimit' ones may have been set repectively by the 'profile' and // the 'save' commands ! $toUnregister = array('password', 'conservative', 'savedMessagesLimit'); dbSessionUnregister($toUnregister); dbSessionSave(); |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:02
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/turkish In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/turkish Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/turkish/chat.loc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** chat.loc 2001/05/07 21:11:01 1.7 --- chat.loc 2001/05/16 20:52:57 1.8 *************** *** 97,100 **** --- 97,102 ---- define('L_REG_46', 'Erkek'); define('L_REG_47', 'Kadin'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:02
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/malay In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/malay Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/malay/chat.loc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** chat.loc 2001/05/07 21:11:00 1.8 --- chat.loc 2001/05/16 20:52:56 1.9 *************** *** 97,100 **** --- 97,102 ---- define('L_REG_46', 'Lelaki'); define('L_REG_47', 'Perempuan'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:02
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/thai In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/thai Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/thai/chat.loc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** chat.loc 2001/05/07 21:11:01 1.8 --- chat.loc 2001/05/16 20:52:57 1.9 *************** *** 96,99 **** --- 96,101 ---- define('L_REG_46', 'male'); define('L_REG_47', 'Female'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:01
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/slovak In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/slovak Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/slovak/chat.loc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** chat.loc 2001/05/07 21:11:00 1.7 --- chat.loc 2001/05/16 20:52:57 1.8 *************** *** 99,102 **** --- 99,104 ---- define('L_REG_46', 'Mu'); define('L_REG_47', 'ena'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:01
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/swedish In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/swedish Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/swedish/chat.loc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** chat.loc 2001/05/07 21:11:01 1.8 --- chat.loc 2001/05/16 20:52:57 1.9 *************** *** 97,100 **** --- 97,102 ---- define('L_REG_46', 'male'); define('L_REG_47', 'Female'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:01
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/portuguese In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/portuguese Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/portuguese/chat.loc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** chat.loc 2001/05/07 21:11:00 1.7 --- chat.loc 2001/05/16 20:52:56 1.8 *************** *** 98,101 **** --- 98,103 ---- define('L_REG_46', 'male'); define('L_REG_47', 'Female'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:01
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/norwegian In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/norwegian Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/norwegian/chat.loc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** chat.loc 2001/05/07 21:11:00 1.8 --- chat.loc 2001/05/16 20:52:56 1.9 *************** *** 97,100 **** --- 97,102 ---- define('L_REG_46', 'male'); define('L_REG_47', 'Female'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:01
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/japanese In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/japanese Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/japanese/chat.loc,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** chat.loc 2001/05/07 21:11:00 1.9 --- chat.loc 2001/05/16 20:52:56 1.10 *************** *** 97,100 **** --- 97,102 ---- define('L_REG_46', 'ÃË'); define('L_REG_47', '½÷'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:01
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/spanish In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/spanish Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/spanish/chat.loc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** chat.loc 2001/05/07 21:11:00 1.7 --- chat.loc 2001/05/16 20:52:57 1.8 *************** *** 99,102 **** --- 99,104 ---- define('L_REG_46', 'Masculino'); define('L_REG_47', 'Femenino'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:01
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/korean In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/korean Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/korean/chat.loc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** chat.loc 2001/05/07 21:11:00 1.7 --- chat.loc 2001/05/16 20:52:56 1.8 *************** *** 98,101 **** --- 98,103 ---- define('L_REG_46', '³²ÀÚ'); define('L_REG_47', '¿©ÀÚ'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:01
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/russian In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/russian Modified Files: chat.loc _chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/russian/chat.loc,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** chat.loc 2001/05/11 18:56:05 1.9 --- chat.loc 2001/05/16 20:52:57 1.10 *************** *** 99,102 **** --- 99,104 ---- define('L_REG_46', 'ìóæñêîé'); define('L_REG_47', 'æåíñêèé'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff Index: _chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/russian/_chat.loc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** _chat.loc 2001/05/07 21:11:00 1.7 --- _chat.loc 2001/05/16 20:52:57 1.8 *************** *** 98,101 **** --- 98,103 ---- define('L_REG_46', 'ÐÁÒÅÎØ'); define('L_REG_47', 'ÄÅ×ÕÛËÁ'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:01
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/romanian In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/romanian Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/romanian/chat.loc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** chat.loc 2001/05/07 21:11:00 1.7 --- chat.loc 2001/05/16 20:52:57 1.8 *************** *** 110,113 **** --- 110,115 ---- define('L_REG_46', 'male'); define('L_REG_47', 'Female'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:01
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/polish In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/polish Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/polish/chat.loc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** chat.loc 2001/05/07 21:11:00 1.7 --- chat.loc 2001/05/16 20:52:56 1.8 *************** *** 98,101 **** --- 98,103 ---- define('L_REG_46', 'male'); define('L_REG_47', 'Female'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:00
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/icelandic In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/icelandic Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/icelandic/chat.loc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** chat.loc 2001/05/07 21:11:00 1.8 --- chat.loc 2001/05/16 20:52:56 1.9 *************** *** 98,101 **** --- 98,103 ---- define('L_REG_46', 'male'); define('L_REG_47', 'Female'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:00
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/italian In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/italian Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/italian/chat.loc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** chat.loc 2001/05/07 21:11:00 1.7 --- chat.loc 2001/05/16 20:52:56 1.8 *************** *** 102,105 **** --- 102,107 ---- define('L_REG_46', 'maschile'); define('L_REG_47', 'femminile'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:00
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/georgian In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/georgian Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/georgian/chat.loc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** chat.loc 2001/05/07 21:11:00 1.8 --- chat.loc 2001/05/16 20:52:56 1.9 *************** *** 102,105 **** --- 102,107 ---- define('L_REG_46', 'male'); define('L_REG_47', 'Female'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:00
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/greek In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/greek Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/greek/chat.loc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** chat.loc 2001/05/07 21:11:00 1.8 --- chat.loc 2001/05/16 20:52:56 1.9 *************** *** 97,100 **** --- 97,102 ---- define('L_REG_46', 'male'); define('L_REG_47', 'Female'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:53:00
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/german In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/german Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/german/chat.loc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** chat.loc 2001/05/07 21:11:00 1.7 --- chat.loc 2001/05/16 20:52:56 1.8 *************** *** 102,105 **** --- 102,107 ---- define('L_REG_46', 'männlich'); define('L_REG_47', 'weiblich'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |
From: Lo?c C. <lo...@us...> - 2001-05-16 20:52:59
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/finnish In directory usw-pr-cvs1:/tmp/cvs-serv3265/chat/localization/finnish Modified Files: chat.loc Log Message: Added L_REG_48 & L_REG_49 used by the password reminder Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/finnish/chat.loc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** chat.loc 2001/05/07 21:11:00 1.7 --- chat.loc 2001/05/16 20:52:56 1.8 *************** *** 98,101 **** --- 98,103 ---- define('L_REG_46', 'Mies'); define('L_REG_47', 'Nainen'); + define('L_REG_48', 'Password reminder'); + define('L_REG_49', 'No user registered this nick!'); // e-mail validation stuff |