1499 |
|
sendto_one(client_p, ":%s TBURST %lu %s %lu %s :%s", |
1500 |
|
me.name, (unsigned long)chptr->channelts, chptr->chname, |
1501 |
|
(unsigned long)chptr->topic_time, |
1502 |
< |
chptr->topic_info ? chptr->topic_info : "", |
1503 |
< |
chptr->topic ? chptr->topic : ""); |
1502 |
> |
chptr->topic_info, |
1503 |
> |
chptr->topic); |
1504 |
|
else if (IsCapable(client_p, CAP_TB)) |
1505 |
|
{ |
1506 |
|
if (ConfigChannel.burst_topicwho) |
1508 |
|
sendto_one(client_p, ":%s TB %s %lu %s :%s", |
1509 |
|
me.name, chptr->chname, |
1510 |
|
(unsigned long)chptr->topic_time, |
1511 |
< |
chptr->topic_info, chptr->topic ? chptr->topic : ""); |
1511 |
> |
chptr->topic_info, chptr->topic); |
1512 |
|
} |
1513 |
|
else |
1514 |
|
{ |
1515 |
|
sendto_one(client_p, ":%s TB %s %lu :%s", |
1516 |
|
me.name, chptr->chname, |
1517 |
|
(unsigned long)chptr->topic_time, |
1518 |
< |
chptr->topic ? chptr->topic : ""); |
1518 |
> |
chptr->topic); |
1519 |
|
} |
1520 |
|
} |
1521 |
|
} |