~yandere-dev/yandere/0.1

« back to all changes in this revision

Viewing changes to functions/action.php

  • Committer: dhammond
  • Date: 2008-12-14 05:29:49 UTC
  • Revision ID: svn-v3-single1-dHJ1bmsvcGhhcm8tbW9kdWxlcy9pcmMteWFuZGVyZQ..:3f858fc8-aa8f-444a-bb42-203473f3994f:trunk%2Fpharo-modules%2Firc-yandere:18
UploadedĀ forgottenĀ files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
        
 
3
        list ($command, $user_id, $vote) = $irc_call_args;
 
4
        
 
5
        if ($command !== false)
 
6
        {
 
7
                $command = strtolower($command);
 
8
        }
 
9
        
 
10
        call('yandere/action-'.($to == $from ? 'pm' : 'channel'), $command, $user_id, $vote);
 
11
        
 
12
?>