summaryrefslogtreecommitdiff
path: root/pages/account/51.php
diff options
context:
space:
mode:
authorMartin Gummi <martin.gummi@cacert.org>2015-01-13 23:16:35 +0100
committerMartin Gummi <martin.gummi@cacert.org>2015-01-13 23:16:35 +0100
commitdce9f1890b6a9c304149457d093d951606b2cd07 (patch)
treecc84aa3950f0e4ed94d96ffd252d6f3d72c40db9 /pages/account/51.php
parent59850cf6c5682535ced19dafdbfb77e1809d1e6a (diff)
downloadcacert-devel-dce9f1890b6a9c304149457d093d951606b2cd07.tar.gz
cacert-devel-dce9f1890b6a9c304149457d093d951606b2cd07.tar.xz
cacert-devel-dce9f1890b6a9c304149457d093d951606b2cd07.zip
bug 1355: remove file 51.php 52.php
Diffstat (limited to 'pages/account/51.php')
-rw-r--r--pages/account/51.php34
1 files changed, 0 insertions, 34 deletions
diff --git a/pages/account/51.php b/pages/account/51.php
deleted file mode 100644
index 7273840..0000000
--- a/pages/account/51.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<? /*
- 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']['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&amp;photoid=<?=$uid ?>&amp;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.");
- }
- } } ?>