Files
media-listing/public/index.php

20 lines
395 B
PHP

<?php
define('ML_File', 'index');
require_once('_inc.php');
try {
$main = MediaListing_Main::instance();
$smarty = $main->smarty();
$page = new MediaListing_Page($smarty, $main->request());
if ($page->evaluate()) {
$smarty->display('index.tpl');
}
} catch (Sihnon_Exception $e) {
die("Uncaught " . get_class($e) . ": " . $e->getMessage());
}
?>