blob: 2d5adb25d317e7ce1917fe43c2fe7a976c460d27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
/**
* display_content_inc
*
* @author spider <spider@steelsun.com>
* @version $Revision: 1.5 $
* @package liberty
* @subpackage functions
*/
global $gBitSmarty, $gBitSystem, $gContent;
// vd( $gContent->mInfo );
$gBitSmarty->assign_by_ref( 'pageInfo', $gContent->mInfo );
$gBitSystem->display( 'bitpackage:liberty/display_content.tpl' , NULL, array( 'display_mode' => 'display' ));
?>
|