From c9ccfcd408f36be8e0b49599c35b47acfeeca901 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Fri, 8 Jun 2001 21:20:15 +0000 Subject: [PATCH] added topic_by, topic_time git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1541 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/perl/perl-common.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/perl/perl-common.c b/src/perl/perl-common.c index 02434d75..f099ef5e 100644 --- a/src/perl/perl-common.c +++ b/src/perl/perl-common.c @@ -250,6 +250,8 @@ void perl_channel_fill_hash(HV *hv, CHANNEL_REC *channel) perl_window_item_fill_hash(hv, (WI_ITEM_REC *) channel); hv_store(hv, "topic", 5, new_pv(channel->topic), 0); + hv_store(hv, "topic_by", 8, new_pv(channel->topic_by), 0); + hv_store(hv, "topic_time", 10, newSViv(channel->topic_time), 0); hv_store(hv, "no_modes", 8, newSViv(channel->no_modes), 0); hv_store(hv, "mode", 4, new_pv(channel->mode), 0);