Files
handbrake-cluster-webui/webui/index.php
Ben Roberts 5ee6f027c3 Fixed bug in define name
Fixed HBC_File define name.
2010-08-22 23:03:44 +01:00

21 lines
392 B
PHP

<?php
define('HBC_File', 'index');
require '_inc.php';
try {
$main = HandBrakeCluster_Main::instance();
$smarty = $main->smarty();
$page = new HandBrakeCluster_Page($smarty, $main->request());
if ($page->evaluate()) {
$smarty->display('index.tpl');
}
} catch (HandBrakeCluster_Exception $e) {
die("Uncaught Exception: " . $e->getMessage());
}
?>