mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-10 18:23:28 +00:00
First attribute cannot be on same line
SVN revision: 964
This commit is contained in:
parent
85a0e0dc75
commit
c3ac366674
@ -6,6 +6,9 @@
|
|||||||
Contents: Web server program for Electronic Logbook ELOG
|
Contents: Web server program for Electronic Logbook ELOG
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.388 2004/07/15 10:01:03 midas
|
||||||
|
First attribute cannot be on same line
|
||||||
|
|
||||||
Revision 1.387 2004/07/15 09:55:03 midas
|
Revision 1.387 2004/07/15 09:55:03 midas
|
||||||
Use 'format <attrib> = 1' also in entry form
|
Use 'format <attrib> = 1' also in entry form
|
||||||
|
|
||||||
@ -6965,7 +6968,7 @@ void show_edit_form(LOGBOOK * lbs, int message_id, BOOL breply, BOOL bedit, BOOL
|
|||||||
input_maxlen = atoi(fl[4]);
|
input_maxlen = atoi(fl[4]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((format_flags[index] & AFF_SAME_LINE) == 0)
|
if (index == 0 || (format_flags[index] & AFF_SAME_LINE) == 0)
|
||||||
rsprintf("<tr><td colspan=2><table width=\"100%%\" cellpadding=0 cellspacing=0><tr>");
|
rsprintf("<tr><td colspan=2><table width=\"100%%\" cellpadding=0 cellspacing=0><tr>");
|
||||||
|
|
||||||
strcpy(star, (attr_flags[index] & AF_REQUIRED) ? "<font color=red>*</font>" : "");
|
strcpy(star, (attr_flags[index] & AF_REQUIRED) ? "<font color=red>*</font>" : "");
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user