Jacek Kowalski
2012-09-16 8a5d946f56106b2d2e368c636dfbed2358a3a81f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
class BotMessageHTTP extends BotMessage {
    function __construct() {
        session_start();
        
        $uid = 'HTTP://'.session_id().'@localhost';
        
        $this->user = new BotUser($uid);
        $this->userAlt = $this->user;
        $this->session = new BotSession($uid);
        $this->setText($_GET['msg']);
    }
}
?>