1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 12:26:40 +02:00

Do not auto-load hidden files in script plugins (bug #21390)

This commit is contained in:
Sebastien Helleu
2009-06-14 16:35:06 +02:00
parent 3379ac4757
commit 92940e52f1
8 changed files with 28 additions and 16 deletions
+1 -1
View File
@@ -404,7 +404,7 @@ script_auto_load (struct t_weechat_plugin *weechat_plugin,
snprintf (dir_name, dir_length,
"%s/%s/autoload", dir_home, weechat_plugin->name);
weechat_exec_on_files (dir_name, NULL, callback);
weechat_exec_on_files (dir_name, 0, NULL, callback);
free (dir_name);
}