blob: 16d10a053a58ff277a9ae3390ea9b1d16c9f08eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
include_once( "../bit_setup_inc.php" );
if (empty($gBitLoc['styleSheet'])) {
$gBitLoc['styleSheet'] = $gBitSystem->getStyleCss();
}
$gBitLoc['browserStyleSheet'] = $gBitSystem->getBrowserStyleCss();
$gBitLoc['customStyleSheet'] = $gBitSystem->getCustomStyleCss();
$gBitLoc['THEMES_STYLE_URL'] = $gBitSystem->getStyleUrl();
if (!empty($_REQUEST['submitUserSearch'])) {
$searchParams = array('find' => $_REQUEST['find']);
$gBitUser->getList($searchParams);
$foundUsers = $searchParams['data'];
} else {
$foundUsers = NULL;
}
$smarty->assign_by_ref('foundUsers', $foundUsers);
$smarty->display('bitpackage:fisheye/find_user.tpl');
?>
|