Skip to Content.
Sympa Menu

cacert-devel - Re: Patch request: Bug #1219

Subject: CAcert Code Development list.

List archive

Re: Patch request: Bug #1219


Chronological Thread 
  • From: Wytze van der Raay <wytze AT cacert.org>
  • To: Michael Tänzer <michael.taenzer AT cacert.org>, "critical-admin AT cacert.org" <critical-admin AT cacert.org>
  • Cc: cacert-devel AT lists.cacert.org, Ulrich Schröter CAcert <ulrich AT cacert.org>, Benny Baumann <benbe AT cacert.org>, Marcus Mängel <inopiae AT cacert.org>
  • Subject: Re: Patch request: Bug #1219
  • Date: Wed, 06 Nov 2013 17:37:08 +0100
  • Organization: CAcert

Hi Michael,

Michael Tänzer schreef op 6-11-2013 16:25:
> We have a fix for https://bugs.cacert.org/view.php?id=1219 "In SE
> console the GPG certificate statistics show wrong value for expired
> certs"
>
> The fix was reviewed by Benny Baumann (BenBE) and me (NEOatNHNG)
> and tested by Martin Gummi and Eva Stöwe (Eva).
>
> Diff is attached. Please also run the locale makefile so that our
> translators see the new strings (if present) on
> https://translations.cacert.org and new translations get imported
> into the system.
>
> Changed files: /pages/account/43.php

The patch has been applied to the production server on November 6, 2013.
See also the attached log message which was sent out.
Strings have been uploaded to and downloaded from the translation
server, and the webserver has been restarted afterwards.

Regards,
-- wytze
--- Begin Message ---
  • From: Wytze van der Raay <wytze AT cacert.org>
  • To: cacert-systemlog AT lists.cacert.org
  • Subject: Fwd: cvs.cacert.org checkin notification
  • Date: Wed, 06 Nov 2013 17:33:40 +0100
  • Organization: CAcert
Fix for https://bugs.cacert.org/view.php?id=1219
"In SE console the GPG certificate statistics show wrong value for
expired certs"

In conjunction with the attached CVS changes a new tarball has been
made available incorporating all updates. The new tarball is available
through http://www.cacert.org/src-lic.php

-- end
--- Begin Message ---
  • From: "root" <root AT cvs.cacert.org>
  • To: critical-admin AT cacert.org
  • Subject: cvs.cacert.org checkin notification
  • Date: Wed, 6 Nov 2013 17:30:32 +0100 (CET)

uid=0(root) gid=0(root) groups=0(root)
43.php 1.50 1.51
Wed Nov 6 17:30:32 CET 2013
Update of /var/lib/cvs/cacert/pages/account
In directory webdb:/home/cacert/www/pages/account

Modified Files:
43.php
Log Message:
Fix for https://bugs.cacert.org/view.php?id=1219
"In SE console the GPG certificate statistics show wrong value for expired
certs"

===================================================================
RCS file: /var/lib/cvs/cacert/pages/account/43.php,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- 43.php 2013/09/06 15:20:57 1.50
+++ 43.php 2013/11/06 16:30:32 1.51
@@ -504,7 +504,7 @@
<td class="DataTD"><?=_("Revoked")?></td>
<td class="DataTD"><?=_("Latest Expire")?></td>
</tr>
-
+<!-- server certificates -->
<tr>
<td class="DataTD"><?=_("Server")?>:</td>
<?
@@ -564,7 +564,7 @@
<?
} ?>
</tr>
-
+<!-- client certificates -->
<tr>
<td class="DataTD"><?=_("Client")?>:</td>
<?
@@ -619,7 +619,7 @@
<?
} ?>
</tr>
-
+<!-- gpg certificates -->
<tr>
<td class="DataTD"><?=_("GPG")?>:</td>
<?
@@ -645,9 +645,9 @@
$valid = $drow['valid'];

$query = "select COUNT(*) as `expired`
- from `emailcerts`
- where `memid` = '".intval($row['id'])."'
- and `expire` <= NOW()";
+ from `gpg`
+ where `memid` = '".intval($row['id'])."'
+ and `expire` <= NOW()";
$dres = mysql_query($query);
$drow = mysql_fetch_assoc($dres);
$expired = $drow['expired'];
@@ -666,7 +666,7 @@
<?
} ?>
</tr>
-
+<!-- org server certificates -->
<tr>
<td class="DataTD"><a
href="account.php?id=58&amp;userid=<?=intval($row['id'])?>"><?=_("Org
Server")?></a>:</td>
<?
@@ -726,7 +726,7 @@
<?
} ?>
</tr>
-
+<!-- org client certificates -->
<tr>
<td class="DataTD"><?=_("Org Client")?>:</td>
<?

--- End Message ---

Attachment: smime.p7s
Description: S/MIME-cryptografische ondertekening


--- End Message ---

Attachment: smime.p7s
Description: S/MIME-cryptografische ondertekening




Archive powered by MHonArc 2.6.18.

Top of Page