diff options
| author | spider@dav <spiderr@bitweaver.org> | 2025-05-27 14:48:17 -0400 |
|---|---|---|
| committer | spider@dav <spiderr@bitweaver.org> | 2025-05-27 14:48:17 -0400 |
| commit | 23dd61e8cabda4b922e2ef28ad6a52db847f2cf0 (patch) | |
| tree | df6424099c027dc7b25d4c42b633ddb4962ed221 | |
| parent | ef2010e28eff63acd79bf52a85bfdc4ad130a582 (diff) | |
| download | boards-23dd61e8cabda4b922e2ef28ad6a52db847f2cf0.tar.gz boards-23dd61e8cabda4b922e2ef28ad6a52db847f2cf0.tar.bz2 boards-23dd61e8cabda4b922e2ef28ad6a52db847f2cf0.zip | |
remove deprecated & object passing
| -rw-r--r-- | includes/classes/BitBoard.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/classes/BitBoard.php b/includes/classes/BitBoard.php index 1fe20f5..c0a296f 100644 --- a/includes/classes/BitBoard.php +++ b/includes/classes/BitBoard.php @@ -845,7 +845,7 @@ function boards_comment_store( &$pObject, &$pParamHash ) { } } -function boards_content_verify( &$pObject, &$pParamHash ){ +function boards_content_verify( $pObject, &$pParamHash ){ // board posts ( e.g. liberty comments ) service global $gBitSystem, $gBitUser; // use is_a instead of isContentType( BITCOMMENT_CONTENT_TYPE_GUID ) as isContentType() checks isValid(), and this service method will not properly handle new object stores |
