summaryrefslogtreecommitdiff
path: root/plugins/CasAuthentication
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-09-25 12:10:36 -0700
committerBrion Vibber <brion@pobox.com>2010-09-25 12:10:36 -0700
commita6469aeed88a400d5d38d75a210417de4af4eea7 (patch)
tree2683ddd14649e9c52d8bdfe8d9ed0f7e37cb7b2a /plugins/CasAuthentication
parent0dc5080a5d71444ad6dab3d3eb8aa30b16d201a1 (diff)
Fix PHP syntax errors introduced during localization fixups in a few files.
Diffstat (limited to 'plugins/CasAuthentication')
-rw-r--r--plugins/CasAuthentication/CasAuthenticationPlugin.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/CasAuthentication/CasAuthenticationPlugin.php b/plugins/CasAuthentication/CasAuthenticationPlugin.php
index 6b751a0aa..71e54d41f 100644
--- a/plugins/CasAuthentication/CasAuthenticationPlugin.php
+++ b/plugins/CasAuthentication/CasAuthenticationPlugin.php
@@ -125,13 +125,13 @@ class CasAuthenticationPlugin extends AuthenticationPlugin
function onInitializePlugin(){
parent::onInitializePlugin();
if(!isset($this->server)){
- throw new Exception(_m("Specifying a server is required.");
+ throw new Exception(_m("Specifying a server is required."));
}
if(!isset($this->port)){
- throw new Exception(_m("Specifying a port is required.");
+ throw new Exception(_m("Specifying a port is required."));
}
if(!isset($this->path)){
- throw new Exception(_m("Specifying a path is required.");
+ throw new Exception(_m("Specifying a path is required."));
}
//These values need to be accessible to a action object
//I can't think of any other way than global variables