Merge pull request #38 from protecinnovations/hotfix/namespacing_issue

Use correct function for joining arrays
This commit is contained in:
Filipe Dobreira
2013-05-01 00:02:59 -07:00
+1 -1
View File
@@ -198,7 +198,7 @@ class PrettyPageHandler extends Handler
if(!is_callable($editor) && !isset($this->editors[$editor])) {
throw new InvalidArgumentException(
"Unknown editor identifier: $editor. Known editors:" .
array_join(",", array_keys($this->editors))
implode(",", array_keys($this->editors))
);
}