blob: 215d2d8f75f5e009be2db4217f76f6970892bae2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
/*
This script gets the searches of current user and
returns it for HTML display in a page.
*/
define('IN_FS', true);
header('Content-type: text/html; charset=utf-8');
require_once('../../header.php');
// Initialise user
if (Cookie::has('flyspray_userid') && Cookie::has('flyspray_passhash')) {
$user = new User(Cookie::val('flyspray_userid'));
$user->check_account_ok();
} else {
$user = new User(0, $proj);
}
// don't allow anonymous users to access this page at all
if ($user->isAnon()) {
die();
}
$user->save_search(); # currently used for loading user searches from db into user object ...
$page = new FSTpl;
$page->setTheme($proj->prefs['theme_style']);
$page->display('links.searches.tpl');
?>
|