mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-10 18:23:28 +00:00
Version 3.1.1
This commit is contained in:
parent
04d5187fcf
commit
55d6ade8b7
@ -1,3 +1,16 @@
|
|||||||
|
Version 3.1.1, released August 4th, 2015
|
||||||
|
========================================
|
||||||
|
|
||||||
|
- Updated CKEditor to version 4.5.1
|
||||||
|
- Implemented "Date/Time format <attribute> = ..."
|
||||||
|
- Implemented "Use Email Subject Edit = ..."
|
||||||
|
- Replaced "Back" by "Delete" button
|
||||||
|
- Fixed many issues with Draft Messages
|
||||||
|
- CSS file is now in *addition* to the default file elog.css
|
||||||
|
- Added LDAP documentation
|
||||||
|
- Added "Logout to URL = ..." option
|
||||||
|
- Added description of Apacher server authentication
|
||||||
|
|
||||||
Version 3.1.0, released April 1st, 2015
|
Version 3.1.0, released April 1st, 2015
|
||||||
=======================================
|
=======================================
|
||||||
|
|
||||||
|
|||||||
@ -2286,6 +2286,9 @@ Options Location = Main Building{a}, New Building{b}, Old Building{c}
|
|||||||
<li>
|
<li>
|
||||||
<b><code>Use Email Subject = <string></code></b>
|
<b><code>Use Email Subject = <string></code></b>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<b><code>Use Email Subject Edit = <string></code></b>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<b><code>Use Email From = <string></code></b>
|
<b><code>Use Email From = <string></code></b>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@ -29,7 +29,7 @@
|
|||||||
[<a class="nav" href="#links">Links</a>] * </div>
|
[<a class="nav" href="#links">Links</a>] * </div>
|
||||||
<P class="Sub">Home of the <i>Electronic Logbook</i> package by <a href="mailto:Stefan.Ritt@psi.ch">
|
<P class="Sub">Home of the <i>Electronic Logbook</i> package by <a href="mailto:Stefan.Ritt@psi.ch">
|
||||||
Stefan Ritt</a></P>
|
Stefan Ritt</a></P>
|
||||||
<div class="version">Current version is : 3.1.0</div>
|
<div class="version">Current version is : 3.1.1</div>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<a name="whatis">
|
<a name="whatis">
|
||||||
|
|||||||
@ -22381,7 +22381,12 @@ int compose_email(LOGBOOK * lbs, char *rcpt_to, char *mail_to, int message_id,
|
|||||||
retrieve_email_from(lbs, mail_from, mail_from_name, attrib);
|
retrieve_email_from(lbs, mail_from, mail_from_name, attrib);
|
||||||
|
|
||||||
/* compose subject from attributes */
|
/* compose subject from attributes */
|
||||||
if (getcfg(lbs->name, "Use Email Subject", subject, sizeof(subject))) {
|
if (old_mail && getcfg(lbs->name, "Use Email Subject Edit", subject, sizeof(subject))) {
|
||||||
|
i = build_subst_list(lbs, slist, svalue, attrib, TRUE);
|
||||||
|
sprintf(str, "%d", message_id);
|
||||||
|
add_subst_list(slist, svalue, "message id", str, &i);
|
||||||
|
strsubst_list(subject, sizeof(subject), slist, svalue, i);
|
||||||
|
} else if (getcfg(lbs->name, "Use Email Subject", subject, sizeof(subject))) {
|
||||||
i = build_subst_list(lbs, slist, svalue, attrib, TRUE);
|
i = build_subst_list(lbs, slist, svalue, attrib, TRUE);
|
||||||
sprintf(str, "%d", message_id);
|
sprintf(str, "%d", message_id);
|
||||||
add_subst_list(slist, svalue, "message id", str, &i);
|
add_subst_list(slist, svalue, "message id", str, &i);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user