Changes in / [dfb6c7d:f8d9df1]


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • perl/modules/IRC/lib/BarnOwl/Module/IRC/Connection.pm

    r1951db8 r1af21e8  
    126126            BarnOwl::Style::boldify('IRC ' . $evt->type . ' message from '
    127127                . $self->alias) . "\n"
    128             . strip_irc_formatting(join '\n', cdr $evt->args));
     128            . strip_irc_formatting(join '\n', cdr($evt->args)));
    129129}
    130130
    131131sub on_motdstart {
    132132    my ($self, $evt) = @_;
    133     $self->motd(join "\n", cdr $evt->args);
     133    $self->motd(join "\n", cdr($evt->args));
    134134}
    135135
    136136sub on_motd {
    137137    my ($self, $evt) = @_;
    138     $self->motd(join "\n", $self->motd, cdr $evt->args);
     138    $self->motd(join "\n", $self->motd, cdr($evt->args));
    139139}
    140140
    141141sub on_endofmotd {
    142142    my ($self, $evt) = @_;
    143     $self->motd(join "\n", $self->motd, cdr $evt->args);
     143    $self->motd(join "\n", $self->motd, cdr($evt->args));
    144144    if(!$self->connected) {
    145145        BarnOwl::admin_message("IRC", "Connected to " .
  • text.c

    r47519e1b r3bcf125  
    194194
    195195    /* look for things we know */
    196     if (!strncasecmp(ptr2, "<BODY ", 6) ||
     196    if (!strncasecmp(ptr2, "<BODY", 5) ||
    197197        !strncasecmp(ptr2, "<FONT", 5) ||
    198198        !strncasecmp(ptr2, "<HTML", 5) ||
Note: See TracChangeset for help on using the changeset viewer.