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/Decorator.php')
-rw-r--r--src/decorators/Decorator.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/decorators/Decorator.php b/src/decorators/Decorator.php
index 9620b305..ab9c34f0 100644
--- a/src/decorators/Decorator.php
+++ b/src/decorators/Decorator.php
@@ -1,7 +1,7 @@
<?php
/**
- * PHPPgAdmin v6.0.0-RC4
+ * PHPPgAdmin v6.0.0-RC5
*/
namespace PHPPgAdmin\Decorators;
@@ -12,12 +12,12 @@ class Decorator
public function __construct($value)
{
- $this->v = $value;
+ $this->val = $value;
}
public function value($fields)
{
- return $this->v;
+ return $this->val;
}
public static function get_sanitized_value(&$var, &$fields, $esc = null)