diff options
| author | bitweaver.org <bitweaver@users.sourceforge.net> | 2005-06-19 04:55:51 +0000 |
|---|---|---|
| committer | bitweaver.org <bitweaver@users.sourceforge.net> | 2005-06-19 04:55:51 +0000 |
| commit | 9263d2df0226a118f4add4664d746a266ce5aa78 (patch) | |
| tree | 7bc560ee5a4111a80f7b4ecd23afe53278cfd352 /display_structure_inc.php | |
| download | liberty-9263d2df0226a118f4add4664d746a266ce5aa78.tar.gz liberty-9263d2df0226a118f4add4664d746a266ce5aa78.tar.bz2 liberty-9263d2df0226a118f4add4664d746a266ce5aa78.zip | |
IMPORT TikiPro CLYDE FINAL
Diffstat (limited to 'display_structure_inc.php')
| -rw-r--r-- | display_structure_inc.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/display_structure_inc.php b/display_structure_inc.php new file mode 100644 index 0000000..cc48f3e --- /dev/null +++ b/display_structure_inc.php @@ -0,0 +1,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' ); + } +?> |
