blob: 16141bfe94559cb2e26c96562e989a595f7a4680 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?php
/**
* @version $Header$
* @package articles
* @subpackage functions
*/
/**
* Initialization
*/
require_once( ARTICLES_PKG_PATH.'BitArticle.php');
require_once( LIBERTY_PKG_PATH.'lookup_content_inc.php' );
// if we already have a gContent, we assume someone else created it for us, and has properly loaded everything up.
if( empty( $gContent ) || !is_object( $gContent ) ) {
if (@BitBase::verifyId( $_REQUEST['article_id'] ) ) {
$gContent = new BitArticle( $_REQUEST['article_id'] );
} elseif( @BitBase::verifyId( $_REQUEST['content_id'] ) ) {
$gContent = new BitArticle( NULL, $_REQUEST['content_id'] );
} else {
$gContent = new BitArticle();
$gContent->mInfo['expire_date'] = strtotime( "+1 year" );
}
if( empty( $gContent->mArticleId ) && empty( $gContent->mContentId ) ) {
//handle legacy forms that use plain 'article' form variable name
} else {
$gContent->load();
}
$gBitSmarty->clearAssign( 'gContent' );
$gBitSmarty->assign( 'gContent', $gContent );
}
|