From 93e066dbccde757ac54fce818bd97ef0043b6207 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michael=20T=C3=A4nzer?=
Date: Wed, 21 Dec 2011 00:03:21 +0100
Subject: bug 964: Patches from Brian Dawson: allow selection of keysize in IE
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Michael Tänzer
---
pages/account/17.php | 122 +----------------------------------
pages/account/4.php | 175 +--------------------------------------------------
2 files changed, 4 insertions(+), 293 deletions(-)
(limited to 'pages/account')
diff --git a/pages/account/17.php b/pages/account/17.php
index 2ba5390..36b0c9f 100644
--- a/pages/account/17.php
+++ b/pages/account/17.php
@@ -14,124 +14,6 @@
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(array_key_exists('HTTP_USER_AGENT',$_SERVER) && strstr($_SERVER['HTTP_USER_AGENT'], "MSIE")) { ?>
-
-
-
- } else { ?>
-
-
-
- } ?>
+require_once "../../includes/keygen.php";
diff --git a/pages/account/4.php b/pages/account/4.php
index a4d6597..36b0c9f 100644
--- a/pages/account/4.php
+++ b/pages/account/4.php
@@ -14,177 +14,6 @@
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(array_key_exists('HTTP_USER_AGENT',$_SERVER) && strstr($_SERVER['HTTP_USER_AGENT'], "MSIE")) { ?>
-
-
-
- } else { ?>
-
-
-
- } ?>
+require_once "../../includes/keygen.php";
--
cgit v1.2.1
From 327d40464b9ad672db38ea6bd1e271c1f771afde Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michael=20T=C3=A4nzer?=
Date: Wed, 21 Dec 2011 01:04:47 +0100
Subject: bug 964: Doh. require() confusion.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Michael Tänzer
---
pages/account/17.php | 2 +-
pages/account/4.php | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
(limited to 'pages/account')
diff --git a/pages/account/17.php b/pages/account/17.php
index 36b0c9f..8ac8b65 100644
--- a/pages/account/17.php
+++ b/pages/account/17.php
@@ -16,4 +16,4 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-require_once "../../includes/keygen.php";
+require_once($_SESSION['_config']['filepath'].'/includes/keygen.php');
diff --git a/pages/account/4.php b/pages/account/4.php
index 36b0c9f..8ac8b65 100644
--- a/pages/account/4.php
+++ b/pages/account/4.php
@@ -16,4 +16,4 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-require_once "../../includes/keygen.php";
+require_once($_SESSION['_config']['filepath'].'/includes/keygen.php');
--
cgit v1.2.1
From 9b0e49833c2ce5aec65361b9d5ed96e39c625e6c Mon Sep 17 00:00:00 2001
From: INOPIAE
Date: Thu, 13 Dec 2012 10:15:52 +0100
Subject: bug 1122:created new file for the CCA overview and added short
information about CCA into SE admin console
---
pages/account/43.php | 4 ++++
1 file changed, 4 insertions(+)
(limited to 'pages/account')
diff --git a/pages/account/43.php b/pages/account/43.php
index 7bf6d04..67076bb 100644
--- a/pages/account/43.php
+++ b/pages/account/43.php
@@ -176,6 +176,10 @@ include_once($_SESSION['_config']['filepath']."/includes/notary.inc.php");
--
cgit v1.2.1
From e22a338486cd4d7305eb8b2f4b36460873a5855b Mon Sep 17 00:00:00 2001
From: INOPIAE
Date: Thu, 13 Dec 2012 10:36:21 +0100
Subject: bug 1122: Added pages/account/57.php
---
pages/account/57.php | 108 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 108 insertions(+)
create mode 100644 pages/account/57.php
(limited to 'pages/account')
diff --git a/pages/account/57.php b/pages/account/57.php
new file mode 100644
index 0000000..6b15889
--- /dev/null
+++ b/pages/account/57.php
@@ -0,0 +1,108 @@
+ /*
+ 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']);
+ $query = "select * from `users` where `id`='$user_id' and `users`.`deleted`=0";
+ $res = mysql_query($query);
+ 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);
+?>
+
--
cgit v1.2.1
From 9769049b3764c7744a296ac0a0b3381916b30749 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michael=20T=C3=A4nzer?=
Date: Wed, 23 Jan 2013 00:24:14 +0100
Subject: bug-1141: Show server certificates from deleted domains so a user can
verify their state. Also: some cosmetic fixes
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Michael Tänzer
---
pages/account/12.php | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
(limited to 'pages/account')
diff --git a/pages/account/12.php b/pages/account/12.php
index 44926ca..fa8b41a 100644
--- a/pages/account/12.php
+++ b/pages/account/12.php
@@ -36,7 +36,7 @@
`domaincerts`.`expire` as `expires`, `revoked` as `revoke`,
UNIX_TIMESTAMP(`revoked`) as `revoked`, `CN`, `domaincerts`.`serial`, `domaincerts`.`id` as `id`
from `domaincerts`,`domains`
- where `memid`='".intval($_SESSION['profile']['id'])."' and `deleted`=0 and `domaincerts`.`domid`=`domains`.`id` ";
+ where `memid`='".intval($_SESSION['profile']['id'])."' and `domaincerts`.`domid`=`domains`.`id` ";
if($viewall != 1)
{
$query .= "AND `revoked`=0 AND `renewed`=0 ";
@@ -49,7 +49,7 @@
{
?>