diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2007-10-25 20:43:02 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2007-10-25 20:43:02 +0000 |
| commit | 968e9126f15a2be2ac46de7abff43280d853dd22 (patch) | |
| tree | 77c77400167ed304112f15e0283037a7998a14c2 | |
| parent | b0c9a1192178a894837e1ed5f9e284fc170c2964 (diff) | |
| download | users-968e9126f15a2be2ac46de7abff43280d853dd22.tar.gz users-968e9126f15a2be2ac46de7abff43280d853dd22.tar.bz2 users-968e9126f15a2be2ac46de7abff43280d853dd22.zip | |
fix fatalError() usage
| -rw-r--r-- | assigned_modules.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/assigned_modules.php b/assigned_modules.php index f99d72b..1459901 100644 --- a/assigned_modules.php +++ b/assigned_modules.php @@ -3,13 +3,13 @@ * assigned_modules * * @author spider <spider@steelsun.com> - * @version $Revision: 1.12 $ + * @version $Revision: 1.13 $ * @package users * @subpackage functions * @copyright Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. * @license Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. */ -// $Header: /cvsroot/bitweaver/_bit_users/assigned_modules.php,v 1.12 2007/10/25 17:14:15 nickpalmer Exp $ +// $Header: /cvsroot/bitweaver/_bit_users/assigned_modules.php,v 1.13 2007/10/25 20:43:02 squareing Exp $ // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Initialization @@ -21,7 +21,7 @@ $gEditMode = 'layout'; */ require_once( '../bit_setup_inc.php' ); -$gBitSystem->fatalError( "Page Not Functional", 'This page is not functional and will be fixed asap.' ); +$gBitSystem->fatalError( 'This page is not functional and will be fixed asap.' ); $gBitSystem->verifyPermission('p_tidbits_configure_modules'); |
