mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-10 18:23:28 +00:00
Made 'move to' menu command case insensitive
SVN revision: 1061
This commit is contained in:
parent
7866424b49
commit
389dac60fc
@ -6,6 +6,9 @@
|
|||||||
Contents: Web server program for Electronic Logbook ELOG
|
Contents: Web server program for Electronic Logbook ELOG
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.461 2004/09/08 09:36:16 midas
|
||||||
|
Made 'move to' menu command case insensitive
|
||||||
|
|
||||||
Revision 1.460 2004/08/12 19:27:59 midas
|
Revision 1.460 2004/08/12 19:27:59 midas
|
||||||
Added more debugging info
|
Added more debugging info
|
||||||
|
|
||||||
@ -14120,11 +14123,11 @@ void show_select_navigation(LOGBOOK * lbs)
|
|||||||
rsprintf("<input type=button value=\"%s\" onClick=\"ToggleAll();\">\n",
|
rsprintf("<input type=button value=\"%s\" onClick=\"ToggleAll();\">\n",
|
||||||
loc("Toggle all"));
|
loc("Toggle all"));
|
||||||
|
|
||||||
if (!getcfg(lbs->name, "Menu commands", str, sizeof(str)) || strstr(str, "Delete")) {
|
if (!getcfg(lbs->name, "Menu commands", str, sizeof(str)) || stristr(str, "Delete")) {
|
||||||
rsprintf("<input type=submit name=cmd value=\"%s\">\n", loc("Delete"));
|
rsprintf("<input type=submit name=cmd value=\"%s\">\n", loc("Delete"));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (getcfg(lbs->name, "Menu commands", str, sizeof(str)) && strstr(str, "Copy to")) {
|
if (getcfg(lbs->name, "Menu commands", str, sizeof(str)) && stristr(str, "Copy to")) {
|
||||||
rsprintf("<input type=submit name=cmd value=\"%s\">\n", loc("Copy to"));
|
rsprintf("<input type=submit name=cmd value=\"%s\">\n", loc("Copy to"));
|
||||||
rsprintf("<select name=destc>\n");
|
rsprintf("<select name=destc>\n");
|
||||||
|
|
||||||
@ -14150,7 +14153,7 @@ void show_select_navigation(LOGBOOK * lbs)
|
|||||||
rsprintf("</select>\n");
|
rsprintf("</select>\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (getcfg(lbs->name, "Menu commands", str, sizeof(str)) && strstr(str, "Move to")) {
|
if (getcfg(lbs->name, "Menu commands", str, sizeof(str)) && stristr(str, "Move to")) {
|
||||||
rsprintf("<input type=submit name=cmd value=\"%s\">\n", loc("Move to"));
|
rsprintf("<input type=submit name=cmd value=\"%s\">\n", loc("Move to"));
|
||||||
rsprintf("<select name=destm>\n");
|
rsprintf("<select name=destm>\n");
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user