mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-10 18:23:28 +00:00
Made p<attribute>=value work again
SVN revision: 996
This commit is contained in:
parent
19ce593cc2
commit
f5ea13b361
@ -6,6 +6,9 @@
|
|||||||
Contents: Web server program for Electronic Logbook ELOG
|
Contents: Web server program for Electronic Logbook ELOG
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.414 2004/07/30 07:12:59 midas
|
||||||
|
Made p<attribute>=value work again
|
||||||
|
|
||||||
Revision 1.413 2004/07/28 19:53:28 midas
|
Revision 1.413 2004/07/28 19:53:28 midas
|
||||||
Increased possible size of 'welcome title' to 10000 chars
|
Increased possible size of 'welcome title' to 10000 chars
|
||||||
|
|
||||||
@ -7414,6 +7417,11 @@ void show_edit_form(LOGBOOK * lbs, int message_id, BOOL breply, BOOL bedit, BOOL
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* chech for p<attribute> */
|
||||||
|
sprintf(str, "p%s", attr_list[index]);
|
||||||
|
if (isparam(str))
|
||||||
|
strlcpy(attrib[index], getparam(str), NAME_LENGTH);
|
||||||
|
|
||||||
/* display text box with optional tooltip */
|
/* display text box with optional tooltip */
|
||||||
sprintf(str, "Tooltip %s", attr_list[index]);
|
sprintf(str, "Tooltip %s", attr_list[index]);
|
||||||
title[0] = 0;
|
title[0] = 0;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user