CVS update: /cowiki/htdocs/
[email protected] 15 Mar 2005 04:35:12 -0000
| Newsgroups | gmane.comp.php.cowiki.cvs |
|---|---|
| Message-ID | <[email protected]> |
User: dgorski Date: 05/03/14 20:35:12 Modified: /cowiki/htdocs/ index.php Log: Moved "include_once 'core.base.php';" into the main controller block. This _might_ affect error messages that occur in the "core.base" itself, but it runs cleaner for me. I am not sure if it is proof, but would like to keep it there. File Changes: Directory: /cowiki/htdocs/ ========================== File [changed]: index.php Url: http://cowiki.tigris.org/source/browse/cowiki/htdocs/index.php?r1=1.37&r2=1.38 Delta lines: +6 -6 ------------------- --- index.php 13 Mar 2005 03:51:20 -0000 1.37 +++ index.php 15 Mar 2005 04:35:11 -0000 1.38 @@ -2,7 +2,7 @@ /** * - * $Id: index.php,v 1.37 2005/03/13 03:51:20 dgorski Exp $ + * $Id: index.php,v 1.38 2005/03/15 04:35:11 dgorski Exp $ * * This file is part of coWiki. coWiki is free software under the terms of * the GNU General Public License (GPL). Read the LICENSE file. If you did @@ -16,7 +16,7 @@ * @author Daniel T. Gorski, <[email protected]> * @copyright (C) Daniel T. Gorski, {@link http://www.develnet.org} * @license http://www.gnu.org/licenses/gpl.html - * @version $Revision: 1.37 $ + * @version $Revision: 1.38 $ * */ @@ -66,12 +66,12 @@ // -------------------------------------------------------------------- + // Start the main controller + try { + // Include 'core.base.php'. This file resolves basic dependances // and takes care of initializations. include_once 'core.base.php'; - - // Start the main controller - try { // {{{ DEBUG }}} Logger::info('Started processing.');