Added missing semi-colon in return

This commit is contained in:
Bryan Crowe 2013-10-02 22:55:09 -04:00
parent b9003e5f7c
commit 0cffcd1eca

View file

@ -328,7 +328,7 @@ class Folder {
public static function addPathElement($path, $element) { public static function addPathElement($path, $element) {
$element = (array)$element; $element = (array)$element;
array_unshift($element, rtrim($path, DS)); array_unshift($element, rtrim($path, DS));
return implode(DS, $element) return implode(DS, $element);
} }
/** /**