summaryrefslogtreecommitdiff
path: root/plugins/phpbb4/noweb_user.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/phpbb4/noweb_user.php')
-rw-r--r--plugins/phpbb4/noweb_user.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/plugins/phpbb4/noweb_user.php b/plugins/phpbb4/noweb_user.php
new file mode 100644
index 0000000..3291222
--- /dev/null
+++ b/plugins/phpbb4/noweb_user.php
@@ -0,0 +1,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() {
+ }
+}