summaryrefslogtreecommitdiff
path: root/auth/authentication.php
diff options
context:
space:
mode:
authorGuillaume Mazoyer <respawneral@gmail.com>2014-06-10 13:04:06 +0200
committerGuillaume Mazoyer <respawneral@gmail.com>2014-06-10 13:04:06 +0200
commit7abe2f10b7f2f4883743e9bf5d4b6811bb9d6bfa (patch)
treea7bcaa48699acf549052b9f8a967d095a2739fcf /auth/authentication.php
parente68e1cf3c49efcbfab6810d403ea7eaf3584c2b2 (diff)
Rewrite of the routers part.
Should be more modular now to add other routers types.
Diffstat (limited to 'auth/authentication.php')
-rw-r--r--auth/authentication.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth/authentication.php b/auth/authentication.php
index 1ec3cb1..7a67fb5 100644
--- a/auth/authentication.php
+++ b/auth/authentication.php
@@ -49,7 +49,7 @@ abstract class Authentication {
return new Telnet($config);
default:
- 'Unknown authentication mecanism "'.$config['auth'].'"."';
+ print 'Unknown authentication mecanism "'.$config['auth'].'"."';
return null;
}
}