add path separators for Plugin::path()

This commit is contained in:
Evan Prodromou 2011-02-16 13:56:30 -05:00
parent 2b869fa23f
commit 39c6e34098
1 changed files with 8 additions and 0 deletions

View File

@ -162,6 +162,14 @@ class Plugin
$path = common_config('site', 'path') . '/plugins/';
}
if ($path[strlen($path)-1] != '/') {
$path .= '/';
}
if ($path[0] != '/') {
$path = '/'.$path;
}
$protocol = ($isHTTPS) ? 'https' : 'http';
return $protocol.'://'.$server.$path.$plugin.'/'.$relative;