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