summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/plugins/trigger/trigger.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/trigger/trigger.c b/src/plugins/trigger/trigger.c
index b4931c141..8416e0f3f 100644
--- a/src/plugins/trigger/trigger.c
+++ b/src/plugins/trigger/trigger.c
@@ -706,7 +706,8 @@ trigger_name_valid (const char *name)
/* no spaces allowed */
if (strchr (name, ' '))
return 0;
- /* no periods allowed since it is saved via wee_config option name */
+
+ /* no periods allowed */
if (strchr (name, '.'))
return 0;