31 lines
1.2 KiB
PHP
31 lines
1.2 KiB
PHP
<? /*
|
|
Copyright (C) 2004 by Duane Groth <duane_at_CAcert_dot_org>
|
|
|
|
This file is part of CAcert.
|
|
|
|
CAcert has been released under the CAcert Source License
|
|
which can be found included with these source files or can
|
|
be downloaded from the internet from the following address:
|
|
http://www.cacert.org/src-lic.php
|
|
|
|
CAcert is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
PARTICULAR PURPOSE. See the License for more details.
|
|
*/ ?>
|
|
<? if($_SESSION['profile']['tverify'] <= 0) { echo _("You don't have access to this area."); } else { ?>
|
|
<?
|
|
$uid = intval($_GET['photoid']);
|
|
$query = "select * from `tverify` where `id`='$uid' and `modified`=0";
|
|
$res = mysql_query($query);
|
|
if(mysql_num_rows($res) > 0) { ?>
|
|
<img src="account.php?id=51&photoid=<?=$_GET['photoid']?>&img=show" border="0" width="800">
|
|
<? } else {
|
|
$query = "select * from `tverify` where `id`='$uid' and `modified`=1";
|
|
$res = mysql_query($query);
|
|
if(mysql_num_rows($res) > 0)
|
|
{
|
|
echo _("This UID has already been voted on.");
|
|
} else {
|
|
echo _("Unable to locate a valid request for that UID.");
|
|
}
|
|
} } ?>
|