Notes:
index.php - example document for main index, default.tpl wrapper
faq.php - example document for faq page, nonav.tpl wrapper
git-svn-id: svn://10.0.0.236/trunk@175939 18797224-902f-48f8-a5cc-f745e15eee43
13 lines
232 B
PHP
13 lines
232 B
PHP
<?php
|
|
// Close database connection.
|
|
$db->disconnect();
|
|
|
|
// If our $wrapper var is not set, fallback to default.
|
|
if (!isset($wrapper)) {
|
|
$wrapper = 'inc/wrappers/default.tpl';
|
|
}
|
|
|
|
// Display output.
|
|
$smarty->display($wrapper);
|
|
?>
|