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