diff options
author | INOPIAE <inopiae@cacert.org> | 2013-01-09 13:35:37 +0100 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2013-01-09 13:35:37 +0100 |
commit | 5501ed2683fcffc9bb866e9120090dbf66eb374b (patch) | |
tree | 5a9a32ef0c8cff4a0a7918de64a59cd7d6bb641d /pages | |
parent | 2ceda5171ff3161c8b05860879c4d4c9f5f842ea (diff) | |
download | cacert-devel-5501ed2683fcffc9bb866e9120090dbf66eb374b.tar.gz cacert-devel-5501ed2683fcffc9bb866e9120090dbf66eb374b.tar.xz cacert-devel-5501ed2683fcffc9bb866e9120090dbf66eb374b.zip |
bug 1008: created result file
Diffstat (limited to 'pages')
-rw-r--r-- | pages/account/58.php | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/pages/account/58.php b/pages/account/58.php new file mode 100644 index 0000000..44429e6 --- /dev/null +++ b/pages/account/58.php @@ -0,0 +1,56 @@ +<? /* + 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 +*/ ?> +<? +include_once($_SESSION['_config']['filepath'].'/includes/notary.inc.php'); + +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']); + if(mysql_num_rows($res) <= 0){ + echo _("I'm sorry, the user you were looking for seems to have disappeared! Bad things are a foot!"); + } else { + $row = mysql_fetch_assoc($res); + $query = "select `users`.`fname`, `users`.`mname`, `users`.`lname`, `orginfo`.`o`, `org`.`masteracc` + FROM `users`, `orginfo`, `org` + WHERE `users`.`id` = `org`.`memid` AND `orginfo`.`id` = `org`.`orgid` + AND `users`.`id`='$user_id' "; + $res = mysql_query($query);?> + <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"><? + if (mysql_num_rows($res) <= 0) {?> + <tr> + <td colspan="2" class="title"><?=sprintf(_('%s %s %s is not listed as Organisation Adminstrator'),sanitizeHTML($row['fname']),sanitizeHTML($row['mname']),sanitizeHTML($row['lname']))?></td> + </tr> + <?}else{?> + <tr> + <td colspan="2" class="title"><?=sprintf(_('%s %s %s is listed as Organisation Adminstrator for:'),sanitizeHTML($row['fname']),sanitizeHTML($row['mname']),sanitizeHTML($row['lname']))?></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"><?=$data['o']?></td> + <td class="DataTD"><?=$data['masteracc']?></td> + </tr> + <?} + ?></table> +<? } +} +?> |