blob: b542705ebee265dfccb7161e81fba308e4edb146 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<?
$view = new View("admin_include.html");
$view->is_module = TRUE;
$view->name = "thumbnav";
$view->form = $form;
$view->help = $help;
print $view;
?>
|