mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-08 17:13:56 +00:00
Fixed wrong parentheses, thanks to Jan Tomasik
SVN revision: 1759
This commit is contained in:
parent
8b0be8d821
commit
81e40d283e
@ -193,7 +193,7 @@
|
|||||||
RelativePath="..\themes\default\default.css">
|
RelativePath="..\themes\default\default.css">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\elcode.js">
|
RelativePath="..\scripts\elcode.js">
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\elogdemo\elogd.cfg">
|
RelativePath="..\..\elogdemo\elogd.cfg">
|
||||||
|
|||||||
@ -8386,7 +8386,7 @@ void attrib_from_param(int n_attr, char attrib[MAX_N_ATTR][NAME_LENGTH])
|
|||||||
for (i = 0; i < n_attr; i++) {
|
for (i = 0; i < n_attr; i++) {
|
||||||
strcpy(ua, attr_list[i]);
|
strcpy(ua, attr_list[i]);
|
||||||
btou(ua);
|
btou(ua);
|
||||||
if ((attr_flags[i] & (AF_MULTI) | AF_MUSERLIST)) {
|
if (attr_flags[i] & (AF_MULTI | AF_MUSERLIST)) {
|
||||||
attrib[i][0] = 0;
|
attrib[i][0] = 0;
|
||||||
first = 1;
|
first = 1;
|
||||||
for (j = 0; j < MAX_N_LIST; j++) {
|
for (j = 0; j < MAX_N_LIST; j++) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user