Version 2.3.6

SVN revision: 507
This commit is contained in:
Stefan Ritt 2003-04-23 10:40:21 +00:00
parent aba8948812
commit dca6deb473
4 changed files with 12 additions and 5 deletions

View File

@ -1,9 +1,12 @@
Version 2.3.6, released April xxx, 2003 Version 2.3.6, released April 23rd, 2003
======================================= ========================================
- Eliminated WEB_BUFFER_SIZE, made memory allocation dynamically - Eliminated WEB_BUFFER_SIZE, made memory allocation dynamically
- Fixed bug that attachments were deleted on reply - Fixed bug that attachments were deleted on reply
- Added flag "Hidden = 0|1" - Added flag "Hidden = 0|1"
- Added warning if maximum number of attachments reached
- Fixed bug: Upon login on a logbook with guest access, one got
back to the "not logged in" page if username or password was wrong
Version 2.3.5, released April 9th, 2003 Version 2.3.5, released April 9th, 2003
======================================= =======================================

View File

@ -31,7 +31,7 @@
&nbsp;[<a class=nav href="#links">Links</a>]&nbsp; &nbsp;[<a class=nav href="#links">Links</a>]&nbsp;
*&nbsp;</div> *&nbsp;</div>
<P class=Sub>Home of the <i>Electronic Logbook</i> package by <a href="mailto:Stefan.Ritt@psi.ch">Stefan Ritt</a></P> <P class=Sub>Home of the <i>Electronic Logbook</i> package by <a href="mailto:Stefan.Ritt@psi.ch">Stefan Ritt</a></P>
<div class=version>&nbsp; Current version is : 2.3.4 &nbsp;</div> <div class=version>&nbsp; Current version is : 2.3.6 &nbsp;</div>
<hr><a name="whatis"> <hr><a name="whatis">
<div class=section>&nbsp; What is ELOG ? &nbsp;</div> <div class=section>&nbsp; What is ELOG ? &nbsp;</div>

View File

@ -270,3 +270,4 @@ Host = Computer
Your ELOG account has been activated = Ihr ELOG Konto wurde aktiviert Your ELOG account has been activated = Ihr ELOG Konto wurde aktiviert
Activate = Aktivieren Activate = Aktivieren
Maximum number of attachments reached = Maximale Anzahl von Anhängen erreicht Maximum number of attachments reached = Maximale Anzahl von Anhängen erreicht
Invalid user name <i>"%s"</i> = Falscher Benutzer-Name <i>"%s"</i>

View File

@ -6,6 +6,9 @@
Contents: Web server program for Electronic Logbook ELOG Contents: Web server program for Electronic Logbook ELOG
$Log$ $Log$
Revision 1.92 2003/04/23 10:40:21 midas
Version 2.3.6
Revision 1.91 2003/04/23 09:59:46 midas Revision 1.91 2003/04/23 09:59:46 midas
Fixed bug that administrator could not change passwords of other users Fixed bug that administrator could not change passwords of other users
@ -794,7 +797,7 @@
\********************************************************************/ \********************************************************************/
/* Version of ELOG */ /* Version of ELOG */
#define VERSION "2.3.5" #define VERSION "2.3.6"
#include <stdio.h> #include <stdio.h>
#include <sys/types.h> #include <sys/types.h>