Skip to content

Commit

Permalink
should trim the directory separator from the inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
mastacontrola committed Jul 31, 2024
1 parent 2230640 commit b9dcbe3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/web/lib/fog/storagenode.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ private function _getData($item)
'%s://%s/fog/status/getfiles.php?path=%s',
self::$httpproto,
$this->get('ip'),
$items[$item]
rtrim($items[$item], DS)
);
$response = self::$FOGURLRequests->process($url);
return preg_grep(
Expand Down
2 changes: 1 addition & 1 deletion packages/web/lib/fog/system.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ private static function _versionCompare()
public function __construct()
{
self::_versionCompare();
define('FOG_VERSION', '1.6.0-beta.1387');
define('FOG_VERSION', '1.6.0-beta.1388');
define('FOG_CHANNEL', 'Beta');
define('FOG_SCHEMA', 291);
define('FOG_BCACHE_VER', 151);
Expand Down

0 comments on commit b9dcbe3

Please sign in to comment.