Assembla home | Assembla project page
 

Changeset 284

Show
Ignore:
Timestamp:
09/05/08 02:04:51 (3 months ago)
Author:
tobias382
Message:

Fixes #62 Updated the Remind plugin to make nicks case insensitive (thanks for the patch scoates)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Phergie/Plugin/Remind.php

    r282 r284  
    142142            $params = array( 
    143143                'channel' => $channel, 
    144                 'recipient' => $recipient 
     144                'recipient' => strtolower($recipient) 
    145145            ); 
    146146        } else { 
     
    231231                'channel' => $source, 
    232232                'recipient' => $recipient, 
    233                 'sender' => $nick
     233                'sender' => strtolower($nick)
    234234                'message' => $message 
    235235            ));