Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/decorators/UrlDecorator.php')
-rw-r--r--src/decorators/UrlDecorator.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/decorators/UrlDecorator.php b/src/decorators/UrlDecorator.php
index cc22a4a1..19745627 100644
--- a/src/decorators/UrlDecorator.php
+++ b/src/decorators/UrlDecorator.php
@@ -8,6 +8,11 @@ namespace PHPPgAdmin\Decorators;
class UrlDecorator extends Decorator
{
+ public $base;
+ /**
+ * @var mixed
+ */
+ public $queryVars;
public function __construct($base, $queryVars = null)
{
$this->base = $base;
@@ -36,11 +41,8 @@ class UrlDecorator extends Decorator
$sep = '&';
}
}
-
-
- $url = \str_replace('//', '/', \containerInstance()->subFolder . '/' . $url);
- return $url;
+ return \str_replace('//', '/', \containerInstance()->subFolder . '/' . $url);
}
}