diff options
author | Markus Warg <mw@it-sls.de> | 2010-03-29 09:54:06 +0200 |
---|---|---|
committer | Markus Warg <mw@it-sls.de> | 2010-03-29 09:54:06 +0200 |
commit | 9dceece06fbdc98add6f76f0b1aec05891a394c4 (patch) | |
tree | f7227c28ca5f79f30c2ec81ba1a09a4fe3972436 /pages/account/49.php | |
parent | 5b68967def224a00f54eb54946ff17301bbd3cdb (diff) | |
download | cacert-devel-9dceece06fbdc98add6f76f0b1aec05891a394c4.tar.gz cacert-devel-9dceece06fbdc98add6f76f0b1aec05891a394c4.tar.xz cacert-devel-9dceece06fbdc98add6f76f0b1aec05891a394c4.zip |
remove cacert/ prefix
Diffstat (limited to 'pages/account/49.php')
-rw-r--r-- | pages/account/49.php | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/pages/account/49.php b/pages/account/49.php new file mode 100644 index 0000000..8b22399 --- /dev/null +++ b/pages/account/49.php @@ -0,0 +1,101 @@ +<? /* + 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 +*/ ?> +<? + $userid=0; if(array_key_exists('userid',$_GET)) $userid=intval($_GET['userid']); + if($userid <= 0) + { + $domainsearch = $domain = mysql_escape_string(stripslashes($_POST['domain'])); + if(!strstr($domain, "%")) + $domainsearch = "%$domain%"; + if(preg_match("/^\d+$/",$domain)) + $domainsearch = ""; + $query = "select `users`.`id` as `id`, `domains`.`domain` as `domain` from `users`,`domains` + where `users`.`id`=`domains`.`memid` and + (`domains`.`domain` like '$domainsearch' or `domains`.`id`='$domain') and + `domains`.`deleted`=0 and `users`.`deleted`=0 and + `users`.`verified`=1 + group by `users`.`id` limit 100"; + $res = mysql_query($query); + if(mysql_num_rows($res) >= 1) { ?> +<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> + <tr> + <td colspan="5" class="title"><?=_("Select Specific Account Details")?></td> + </tr> +<? + while($row = mysql_fetch_assoc($res)) + { ?> + <tr> + <td class="DataTD"><?=_("Domain")?>:</td> + <td class="DataTD"><a href="account.php?id=43&userid=<?=$row['id']?>"><?=sanitizeHTML($row['domain'])?></a></td> + </tr> +<? } if(mysql_num_rows($res) >= 100) { ?> + <tr> + <td class="DataTD" colspan="2"><?=_("Only the first 100 rows are displayed.")?></td> + </tr> +<? } else { ?> + <tr> + <td class="DataTD" colspan="2"><? printf(_("%s rows displayed."), mysql_num_rows($res)); ?></td> + </tr> +<? } ?> +</table><br><br> +<? } elseif(mysql_num_rows($res) == 1) { + $row = mysql_fetch_assoc($res); + $_GET['userid'] = intval($row['id']); + } else { + printf(_("No personal domains found matching %s"), sanitizeHTML($domain)); + } + + $query = "select `orgid`,`domain` from `orgdomains` where `domain` like '$domainsearch' or `id`='$domain' limit 100"; + $res = mysql_query($query); + if(mysql_num_rows($res) >= 1) { ?> +<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> + <tr> + <td colspan="5" class="title"><?=_("Select Specific Account Details")?></td> + </tr> +<? + while($row = mysql_fetch_assoc($res)) + { ?> + <tr> + <td class="DataTD"><?=_("Domain")?>:</td> + <td class="DataTD"><a href="account.php?id=26&orgid=<?=intval($row['orgid'])?>"><?=sanitizeHTML($row['domain'])?></a></td> + </tr> +<? } if(mysql_num_rows($res) >= 100) { ?> + <tr> + <td class="DataTD" colspan="2"><?=_("Only the first 100 rows are displayed.")?></td> + </tr> +<? } else { ?> + <tr> + <td class="DataTD" colspan="2"><? printf(_("%s rows displayed."), mysql_num_rows($res)); ?></td> + </tr> +<? } ?> +</table><br><br> +<? } elseif(mysql_num_rows($res) == 1) { + $row = mysql_fetch_assoc($res); + $_GET['userid'] = intval($row['id']); + } else { + printf(_("No organisational domains found matching %s"), sanitizeHTML($domain)); + } + } + + if($userid > 0) + { + header("location: account.php?id=43&userid=".intval($_GET['userid'])); + exit; + } +?> + |