summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--auth/authentication.php2
-rw-r--r--routers/router.php2
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;
}
}