|
From: Jon O. <jon...@us...> - 2008-06-15 09:15:49
|
Update of /cvsroot/mxbb/core/includes/sessions/internal In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12672/includes/sessions/internal Modified Files: constants.php session.php Log Message: No panic, only cosmetics, file headers and newlines etc... ;) Index: constants.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/sessions/internal/constants.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** constants.php 13 Sep 2007 09:12:49 -0000 1.2 --- constants.php 15 Jun 2008 09:15:43 -0000 1.3 *************** *** 1,23 **** <?php ! /*************************************************************************** ! * constants.php ! * ------------------- ! * begin : Saturday', Feb 13', 2001 ! * copyright : ('C) 2001 The phpBB Group ! * email : su...@ph... ! * ! * $Id$ ! * ! * ! ***************************************************************************/ ! ! /*************************************************************************** ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License', or ! * ('at your option) any later version. ! * ! ***************************************************************************/ if ( !defined('IN_PHPBB') ) --- 1,12 ---- <?php ! /** ! * ! * @package Style ! * @version $Id$ ! * @copyright (c) 2002-2008 MX-Publisher Project Team ! * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 ! * @link http://www.mx-publisher.com ! * ! */ if ( !defined('IN_PHPBB') ) *************** *** 28,33 **** // Debug Level //define('DEBUG', 1); // Debugging on ! define('DEBUG', 1); // Debugging off ! // User Levels <- Do not change the values of USER or ADMIN --- 17,21 ---- // Debug Level //define('DEBUG', 1); // Debugging on ! define('DEBUG', 0); // Debugging off // User Levels <- Do not change the values of USER or ADMIN *************** *** 39,43 **** define('MOD', 2); - // User related define('USER_ACTIVATION_NONE', 0); --- 27,30 ---- *************** *** 50,54 **** define('USER_AVATAR_GALLERY', 3); - // Group settings define('GROUP_OPEN', 0); --- 37,40 ---- *************** *** 56,65 **** define('GROUP_HIDDEN', 2); - // Forum state define('FORUM_UNLOCKED', 0); define('FORUM_LOCKED', 1); - // Topic status define('TOPIC_UNLOCKED', 0); --- 42,49 ---- *************** *** 69,73 **** define('TOPIC_WATCH_UN_NOTIFIED', 0); - // Topic types define('POST_NORMAL', 0); --- 53,56 ---- *************** *** 76,85 **** define('POST_GLOBAL_ANNOUNCE', 3); - // SQL codes define('BEGIN_TRANSACTION', 1); define('END_TRANSACTION', 2); - // Error codes define('GENERAL_MESSAGE', 200); --- 59,66 ---- *************** *** 88,92 **** define('CRITICAL_ERROR', 204); - // Private messaging define('PRIVMSGS_READ_MAIL', 0); --- 69,72 ---- *************** *** 97,101 **** define('PRIVMSGS_UNREAD_MAIL', 5); - // URL PARAMETERS define('POST_TOPIC_URL', 't'); --- 77,80 ---- *************** *** 110,114 **** define('SESSION_METHOD_GET', 101); - // Page numbers for session handling define('PAGE_INDEX', 0); --- 89,92 ---- *************** *** 125,129 **** define('PAGE_TOPIC_OFFSET', 5000); - // Auth settings define('AUTH_LIST_ALL', 0); --- 103,106 ---- *************** *** 147,151 **** define('AUTH_ATTACH', 11); - // Table names //define('CONFIRM_TABLE', $table_prefix.'confirm'); --- 124,127 ---- *************** *** 180,183 **** //define('VOTE_RESULTS_TABLE', $table_prefix.'vote_results'); //define('VOTE_USERS_TABLE', $table_prefix.'vote_voters'); - ?> \ No newline at end of file --- 156,158 ---- Index: session.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/sessions/internal/session.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** session.php 9 Feb 2008 19:42:38 -0000 1.6 --- session.php 15 Jun 2008 09:15:43 -0000 1.7 *************** *** 1,23 **** <?php ! /*************************************************************************** ! * sessions.php ! * ------------------- ! * begin : Saturday, Feb 13, 2001 ! * copyright : (C) 2001 The phpBB Group ! * email : su...@ph... ! * ! * $Id$ ! * ! * ! ***************************************************************************/ ! ! /*************************************************************************** ! * ! * This program is free software; you can redistribute it and/or modify ! * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or ! * (at your option) any later version. ! * ! ***************************************************************************/ /** --- 1,12 ---- <?php ! /** ! * ! * @package Style ! * @version $Id$ ! * @copyright (c) 2002-2008 MX-Publisher Project Team & (C) 2001 The phpBB Group ! * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 ! * @link http://www.mx-publisher.com ! * ! */ /** |