mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-10 18:23:28 +00:00
Fixed open anchor
SVN revision: 985
This commit is contained in:
parent
1c830aa418
commit
350c2ab573
@ -6,6 +6,9 @@
|
|||||||
Contents: Web server program for Electronic Logbook ELOG
|
Contents: Web server program for Electronic Logbook ELOG
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.407 2004/07/28 10:05:07 midas
|
||||||
|
Fixed open anchor
|
||||||
|
|
||||||
Revision 1.406 2004/07/27 20:48:49 midas
|
Revision 1.406 2004/07/27 20:48:49 midas
|
||||||
Fixed compiler warnings
|
Fixed compiler warnings
|
||||||
|
|
||||||
@ -16726,7 +16729,7 @@ void show_elog_message(LOGBOOK * lbs, char *dec_path, char *command)
|
|||||||
if (strstr(att, ".GIF") || strstr(att, ".JPG") || strstr(att, ".JPEG")
|
if (strstr(att, ".GIF") || strstr(att, ".JPG") || strstr(att, ".JPEG")
|
||||||
|| strstr(att, ".PNG")) {
|
|| strstr(att, ".PNG")) {
|
||||||
rsprintf("<tr><td class=\"messageframe\">\n");
|
rsprintf("<tr><td class=\"messageframe\">\n");
|
||||||
rsprintf("<a name=\"att%d\">\n", index + 1);
|
rsprintf("<a name=\"att%d\"></a>\n", index + 1);
|
||||||
rsprintf("<img src=\"%s\"></td></tr>", ref);
|
rsprintf("<img src=\"%s\"></td></tr>", ref);
|
||||||
rsprintf("</td></tr>\n\n");
|
rsprintf("</td></tr>\n\n");
|
||||||
} else {
|
} else {
|
||||||
@ -16736,7 +16739,7 @@ void show_elog_message(LOGBOOK * lbs, char *dec_path, char *command)
|
|||||||
rsprintf("<tr><td class=\"messageframe\">\n");
|
rsprintf("<tr><td class=\"messageframe\">\n");
|
||||||
|
|
||||||
/* anchor for references */
|
/* anchor for references */
|
||||||
rsprintf("<a name=\"att%d\">\n", index + 1);
|
rsprintf("<a name=\"att%d\"></a>\n", index + 1);
|
||||||
|
|
||||||
if (!strstr(att, ".HTML"))
|
if (!strstr(att, ".HTML"))
|
||||||
rsprintf("<pre class=\"messagepre\">");
|
rsprintf("<pre class=\"messagepre\">");
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user