diff options
| author | wjames5 <will@tekimaki.com> | 2008-10-03 17:20:15 +0000 |
|---|---|---|
| committer | wjames5 <will@tekimaki.com> | 2008-10-03 17:20:15 +0000 |
| commit | 87b6950c7ecbb1d09b2732a20a90b9f7da105db5 (patch) | |
| tree | b63dc75585818e00418188429d1b96256d9a9fd1 /edit.php | |
| parent | 9b3933172462d5529d6a72f44d1e66ead91f6e11 (diff) | |
| download | boards-87b6950c7ecbb1d09b2732a20a90b9f7da105db5.tar.gz boards-87b6950c7ecbb1d09b2732a20a90b9f7da105db5.tar.bz2 boards-87b6950c7ecbb1d09b2732a20a90b9f7da105db5.zip | |
CORE CHANGE: cleave Create permission from Edit permission so that they are distinct. See mailing list for more details
Diffstat (limited to 'edit.php')
| -rw-r--r-- | edit.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ <?php /** - * $Header: /cvsroot/bitweaver/_bit_boards/edit.php,v 1.12 2008/10/02 13:11:59 nickpalmer Exp $ + * $Header: /cvsroot/bitweaver/_bit_boards/edit.php,v 1.13 2008/10/03 17:20:15 wjames5 Exp $ * Copyright (c) 2004 bitweaver Messageboards * All Rights Reserved. See copyright.txt for details and a complete list of authors. * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. @@ -26,7 +26,7 @@ require_once(BOARDS_PKG_PATH.'lookup_inc.php' ); if( $gContent->isValid() ) { $gContent->verifyEditPermission(); } else { - $gBitSystem->verifyPermission( 'p_boards_edit' ); + $gContent->verifyCreatePermission(); } // Handle delete request |
