blob: cc48f3e11d2433adb4561fbf1e91f3dfa9f6ead4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
global $gContent;
include_once( LIBERTY_PKG_PATH.'lookup_content_inc.php' );
if( is_object( $gContent ) && $gContent->isValid() ) {
$gBitSystem->setBrowserTitle( $gStructure->getRootTitle().' : '.$gContent->getTitle() );
include $gContent->getRenderFile();
} else {
$gBitSystem->fatalError( 'Page cannot be found' );
}
?>
|