Skip to content
Snippets Groups Projects
Commit 782a8aa2 authored by rswindell's avatar rswindell
Browse files

More detailed output in import_netuser_list().

parent 88c1510a
No related branches found
No related tags found
No related merge requests found
......@@ -120,12 +120,16 @@ function import_netuser_list(hdr, list)
objs.push({ name: list[i][u], data: i, created: new Date() });
}
}
if(!file.open("w"))
if(!file.open("w")) {
alert("Error opening " + file.name);
return false;
}
var result = file.iniSetAllObjects(objs);
file.writeln(format(";updated by %s at %s (%s) on %s"
, hdr.from, hdr.subject, hdr.from_net_addr, new Date()));
file.close();
if(verbosity)
printf("%s written with %u avatars", file.name, objs.length);
return result;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment