blob: 2bc23c56f5bad839f2d57902a046f7f180bce1be (
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
/**
* @version $Header: /cvsroot/bitweaver/_bit_fisheye/find_user.php,v 1.3 2005/08/01 18:40:07 squareing Exp $
* @package fisheye
* @subpackage functions
*/
/**
* required setup
*/
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;
}
$gBitSmarty->assign_by_ref('foundUsers', $foundUsers);
$gBitSmarty->display('bitpackage:fisheye/find_user.tpl');
?>
|