Added format for the chanserv url event.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@757 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-10-14 19:41:47 +00:00 committed by cras
commit afcf554bf8
3 changed files with 3 additions and 1 deletions

View file

@ -527,7 +527,7 @@ static void event_chanserv_url(const char *data, IRC_SERVER_REC *server)
g_return_if_fail(data != NULL);
params = event_get_params(data, 3, NULL, &channel, &url);
printtext(server, channel, MSGLEVEL_CRAP, "%s", url);
printformat(server, channel, MSGLEVEL_CRAP, IRCTXT_CHANNEL_URL, url);
g_free(params);
}