|
From: Lo?c C. <lo...@us...> - 2001-04-19 20:25:37
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv12806/chat Modified Files: profile_del.php3 profile_edit.php3 profile_reg.php3 Log Message: Added some missing comments Index: profile_del.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_del.php3,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** profile_del.php3 2001/04/19 08:51:33 1.7 --- profile_del.php3 2001/04/19 20:25:35 1.8 *************** *** 13,17 **** // | http://www.phpheaven.net/projects/phpMyChat/ | // | | ! // | Authors: the phpHeaven-team <php...@ya...> | // +--------------------------------------------------------------------------+ // --- 13,17 ---- // | http://www.phpheaven.net/projects/phpMyChat/ | // | | ! // | Authors: the phpHeaven-team <te...@ph...> | // +--------------------------------------------------------------------------+ // *************** *** 118,122 **** --- 118,126 ---- /** * Displays the profile deletion page + * + * Uses the 'pmcUrlForStyleSheet()' function 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); ?> Index: profile_edit.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_edit.php3,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** profile_edit.php3 2001/04/19 08:51:33 1.7 --- profile_edit.php3 2001/04/19 20:25:35 1.8 *************** *** 13,17 **** // | http://www.phpheaven.net/projects/phpMyChat/ | // | | ! // | Authors: the phpHeaven-team <php...@ya...> | // +--------------------------------------------------------------------------+ // --- 13,17 ---- // | http://www.phpheaven.net/projects/phpMyChat/ | // | | ! // | Authors: the phpHeaven-team <te...@ph...> | // +--------------------------------------------------------------------------+ // *************** *** 223,227 **** --- 223,231 ---- /** * Displays the profile modification 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); ?> Index: profile_reg.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_reg.php3,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** profile_reg.php3 2001/04/19 08:51:33 1.8 --- profile_reg.php3 2001/04/19 20:25:35 1.9 *************** *** 13,17 **** // | http://www.phpheaven.net/projects/phpMyChat/ | // | | ! // | Authors: the phpHeaven-team <php...@ya...> | // | & Jose' Carlos Pereira <php...@ab...> | // +--------------------------------------------------------------------------+ --- 13,17 ---- // | http://www.phpheaven.net/projects/phpMyChat/ | // | | ! // | Authors: the phpHeaven-team <te...@ph...> | // | & Jose' Carlos Pereira <php...@ab...> | // +--------------------------------------------------------------------------+ *************** *** 226,230 **** --- 226,234 ---- /** * Displays the profile registration page + * + * Uses the 'pmcUrlForStyleSheet()' function 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); ?> |