diff options
| author | wjames5 <will@tekimaki.com> | 2007-04-25 16:03:49 +0000 |
|---|---|---|
| committer | wjames5 <will@tekimaki.com> | 2007-04-25 16:03:49 +0000 |
| commit | 594f1c03bdd9a0643ecb117537441dfcba04410a (patch) | |
| tree | 464a75ac62a266f691cc28e868d994c1d9fc425c /templates/center_list_blog_posts.php | |
| parent | b2140a0041f3bdff1845b208567eb7d70aef6938 (diff) | |
| download | blogs-594f1c03bdd9a0643ecb117537441dfcba04410a.tar.gz blogs-594f1c03bdd9a0643ecb117537441dfcba04410a.tar.bz2 blogs-594f1c03bdd9a0643ecb117537441dfcba04410a.zip | |
add group_id handling to BitBlogsPost::getList ParamHash
Diffstat (limited to 'templates/center_list_blog_posts.php')
| -rw-r--r-- | templates/center_list_blog_posts.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/center_list_blog_posts.php b/templates/center_list_blog_posts.php index e24725b..fbb7608 100644 --- a/templates/center_list_blog_posts.php +++ b/templates/center_list_blog_posts.php @@ -24,6 +24,9 @@ if( empty( $listHash['user_id'] )) { $listHash['user_id'] = $_REQUEST['user_id']; } } +if( @BitBase::verifyId( $_REQUEST['group_id'] ) ) { + $listHash['group_id'] = $_REQUEST['group_id']; +} $blogPosts = $blogPost->getList( $listHash ); $gBitSmarty->assign_by_ref( 'gQueryUserId', $listHash['user_id'] ); |
