summaryrefslogtreecommitdiff
path: root/pages/account/58.php
blob: 9b5234c38cfee9604c8a610278e59c72b1e132e9 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<? /*
    LibreSSL - CAcert web application
    Copyright (C) 2004-2008  CAcert Inc.

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; version 2 of the License.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
*/

if ($_SESSION['profile']['admin'] != 1 || !array_key_exists('userid',$_REQUEST) || intval($_REQUEST['userid']) < 1) {
	echo _('You do not have access to this page');
} else {
	$user_id = intval($_REQUEST['userid']);
	$query = "select `users`.`fname`, `users`.`mname`, `users`.`lname` from `users` where `id`='$user_id' and `users`.`deleted`=0";
	$res = mysql_query($query);
	if(mysql_num_rows($res) != 1){
		echo _("I'm sorry, the user you were looking for seems to have disappeared! Bad things are a foot!");
	} else {
		if ($row = mysql_fetch_assoc($res)){
			$username=sanitizeHTML($row['fname']).' '.sanitizeHTML($row['mname']).' '.sanitizeHTML($row['lname']);
			$query = "select `orginfo`.`o`, `org`.`masteracc`
				FROM `orginfo`, `org`
				WHERE `orginfo`.`id` = `org`.`orgid`
				AND `users`.`id`='$user_id' order by `orginfo`.`o`";
			$res1 = mysql_query($query);?>
			<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"><?
			if (mysql_num_rows($res1) <= 0) {?>
				<tr>
					<td colspan="2" class="title"><?=sprintf(_('%s is not listed as Organisation Administrator'), $username)?></td>
				</tr>
			<?}else{?>
				<tr>
					<td colspan="2" class="title"><?=sprintf(_('%s is listed as Organisation Administrator for:'), $username)?></td>
				</tr>
				<tr>
					<td class="DataTD"><b><?=_('Organisation')?></b></td>
					<td class="DataTD"><b><?=_('Masteraccount')?></b></td>
				</tr><?
				while($drow = mysql_fetch_assoc($res)){?>
					<tr>
						<td class="DataTD"><?=$drow['o']?></td>
						<td class="DataTD"><?=$drow['masteracc'] ? _("Yes") : _("No") ?></td>
					</tr>
				<?}
			}
			?></table>
<?		}else{
				echo _("I'm sorry, the user you were looking for seems to have disappeared! Bad things are a foot!");
		}
	}
}
?>