diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2015-01-04 22:30:17 +0100 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2015-01-04 22:30:17 +0100 |
commit | c4cf5b15eddbd2e5ffabb097ee31372c15091dbb (patch) | |
tree | 4366ccca7e1341b03e507befa79366c3e439cdd8 | |
parent | 926f4977e4a8a9b6b77a22b4f8e8cd09f10f8114 (diff) |
Cosmetic () for print instruction.
-rw-r--r-- | auth/authentication.php | 2 | ||||
-rw-r--r-- | routers/router.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/auth/authentication.php b/auth/authentication.php index 5fd7f87..81d12e1 100644 --- a/auth/authentication.php +++ b/auth/authentication.php @@ -109,7 +109,7 @@ abstract class Authentication { return new Telnet($config); default: - print 'Unknown authentication mecanism "'.$config['auth'].'"."'; + print('Unknown authentication mecanism "'.$config['auth'].'"."'); return null; } } diff --git a/routers/router.php b/routers/router.php index c11db5c..9a62d82 100644 --- a/routers/router.php +++ b/routers/router.php @@ -164,7 +164,7 @@ abstract class Router { return new Quagga($config, $router_config, $id, $requester); default: - print 'Unknown router type "'.$router_config['type'].'".'; + print('Unknown router type "'.$router_config['type'].'".'); return null; } } |