aboutsummaryrefslogtreecommitdiffstats
path: root/irc.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@Jona.local>2005-11-18 13:41:58 +0100
committerWilmer van der Gaast <wilmer@Jona.local>2005-11-18 13:41:58 +0100
commitc572dd67167c0365a5bf62899c31efd4f223acaa (patch)
treeadaf621a5ab6809bfbc39a6ed62aabae76a6bb4d /irc.c
parent2dff6f72604bc6e7232b215b229f8e7556608651 (diff)
HTML stripping is optional again (but still safer than before 0.93), but now enabled by default.
Diffstat (limited to 'irc.c')
-rw-r--r--irc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc.c b/irc.c
index c2199f57..a716fe9e 100644
--- a/irc.c
+++ b/irc.c
@@ -120,12 +120,12 @@ irc_t *irc_new( int fd )
set_add( irc, "default_target", "root", NULL );
set_add( irc, "display_namechanges", "false", set_eval_bool );
set_add( irc, "handle_unknown", "root", NULL );
- /* set_add( irc, "html", "nostrip", NULL ); */
set_add( irc, "lcnicks", "true", set_eval_bool );
set_add( irc, "ops", "both", set_eval_ops );
set_add( irc, "private", "true", set_eval_bool );
set_add( irc, "query_order", "lifo", NULL );
set_add( irc, "save_on_quit", "true", set_eval_bool );
+ set_add( irc, "strip_html", "true", NULL );
set_add( irc, "to_char", ": ", set_eval_to_char );
set_add( irc, "typing_notice", "false", set_eval_bool );