summaryrefslogtreecommitdiff
path: root/plugins/phpbb31/noweb_user.php
blob: 3291222989035a2e93eb8bd9bf4ebdd534eb074c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

class noweb_user {
  var $session_id = '';
  var $browser = 'N/A';
  var $forwarded_for = '127.0.0.1';
  var $ip = '127.0.0.1';

  function session_create() {
    // do absolutely nothing. however, unless we tell the auth module the session
    // was successfully created, it won't pass back a success.
    return TRUE;
  }
  
  function setup() {
  }
}