Update of /cvsroot/phpcms-plugins/admin4phpCMS/modules/error
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12823/modules/error
Modified Files:
class.module_error.php
Log Message:
several changes
Index: class.module_error.php
===================================================================
RCS file: /cvsroot/phpcms-plugins/admin4phpCMS/modules/error/class.module_error.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- class.module_error.php 30 May 2004 18:03:41 -0000 1.2
+++ class.module_error.php 4 Jun 2004 11:11:57 -0000 1.3
@@ -1,4 +1,45 @@
<?php
+/**
+* The errorhandler-module
+*
+* <b>License</b>
+*
+* 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.
+*
+* 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
+* along with this program; if not, write to the Free Software
+* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*
+* @author Martin Jahn <mj...@us...>
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright Copyright (c) 2004, Martin Jahn
+* @version $Id$
+* @package admin4phpCMS
+* @subpackage module_error
+**/
+
+/*
+* $Log$
+* Revision 1.3 2004/06/04 11:11:57 mjahn
+* several changes
+*
+*/
+
+/**
+* Errorhandler-class
+*
+* @package admin4phpCMS
+* @subpackage module_error
+* @todo Get the class working correctly
+**/
class module_error extends module {
function init () {
|