blob: a1606048b95fe976a75fd2f4606cd2afc097095a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | <?php
require 'config.inc.php';
require '/usr/share/php/Smarty/Smarty.class.php';
$smarty = new Smarty();
$smarty->template_dir = 'smarty/templates/rpmphp';
$smarty->compile_dir = 'smarty/templates_c';
$smarty->cache_dir = 'smarty/cache';
$smarty->config_dir = 'smarty/configs';
$ariane[] = array(
    'url'   => './',
    'text'  => 'Reports home'
);
?>
 |