blob: 18c844f3f699de3b16ec761316fd075d09c0f512 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
define('RPMPHP_VERSION', '1.0.0-dev');
require 'config.inc.php';
require '/usr/share/php/Smarty/Smarty.class.php';
require 'FedoraClient.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'
);
?>
|