summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorChristoph Burschka2014-01-16 15:34:03 +0100
committerChristoph Burschka2014-01-16 15:34:03 +0100
commitde7b4681c953982fb8e33a5f74eb93ee8e539108 (patch)
tree4165c34d2066e1e135f050ccddc37db9beba09d7 /core
parentImplement smf2_session and finish RPC code. (#1) (diff)
downloadejabberd-auth-php-de7b4681c953982fb8e33a5f74eb93ee8e539108.tar.gz
Finished session auth framework for now. (fixes #1)
Doc changes and some implementations remain.
Diffstat (limited to 'core')
-rw-r--r--core/EjabberdAuth.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/EjabberdAuth.php b/core/EjabberdAuth.php
index f83f1b6..f3a5bfc 100644
--- a/core/EjabberdAuth.php
+++ b/core/EjabberdAuth.php
@@ -9,6 +9,7 @@ class EjabberdAuth {
function __construct($config, EjabberdAuthBridge $bridge) {
$this->bridge = $bridge;
+ $this->bridge->parent = $this;
if (!empty($config['log_path']) && is_dir($config['log_path']) && is_writable($config['log_path'])) {
$this->logfile = fopen($config['log_path'] . 'activity-' . date('Y-m-d') . '.log', 'a');
}