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

Fixed typo: security.restrictions, not security_restrictions!

parent 6580b02c
No related branches found
No related tags found
No related merge requests found
...@@ -330,7 +330,7 @@ function export_users(msgbase, realnames, all) ...@@ -330,7 +330,7 @@ function export_users(msgbase, realnames, all)
var u = new User(n); var u = new User(n);
if((u.settings&USER_DELETED) if((u.settings&USER_DELETED)
|| !u.stats.total_posts // No need to export avatars for users that have never posted || !u.stats.total_posts // No need to export avatars for users that have never posted
|| (u.security_restrictions&(UFLAG_P|UFLAG_N|UFLAG_Q)) // or will never post || (u.security.restrictions&(UFLAG_P|UFLAG_N|UFLAG_Q)) // or will never post
) { ) {
if(verbosity) if(verbosity)
printf("User #%u hasn't or can't post, skipping\r\n", n); printf("User #%u hasn't or can't post, skipping\r\n", n);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment