Added comment to explain code that removes invalid scopes

This commit is contained in:
Alex Bilbie 2012-07-20 15:57:29 +01:00
parent a292c4fe86
commit 2b6db69a5a

View File

@ -154,6 +154,7 @@ maintenance of the server.'
$scopes = explode($this->config['scope_delimeter'], $scopes); $scopes = explode($this->config['scope_delimeter'], $scopes);
// Remove any junk scopes
for ($i = 0; $i < count($scopes); $i++) { for ($i = 0; $i < count($scopes); $i++) {
$scopes[$i] = trim($scopes[$i]); $scopes[$i] = trim($scopes[$i]);