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/ActionUrlDecorator.php')
-rw-r--r--src/decorators/ActionUrlDecorator.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/decorators/ActionUrlDecorator.php b/src/decorators/ActionUrlDecorator.php
index 81de0e39..677e95be 100644
--- a/src/decorators/ActionUrlDecorator.php
+++ b/src/decorators/ActionUrlDecorator.php
@@ -1,7 +1,7 @@
<?php
/**
- * PHPPgAdmin v6.0.0-RC5
+ * PHPPgAdmin v6.0.0-RC6
*/
namespace PHPPgAdmin\Decorators;
@@ -35,11 +35,11 @@ class ActionUrlDecorator extends Decorator
continue;
}
//dump($fields, $var, $value);
- $url .= $sep . Decorator::value_url($var, $fields) . '=' . Decorator::value_url($value, $fields);
+ $url .= $sep.Decorator::value_url($var, $fields).'='.Decorator::value_url($value, $fields);
$sep = '&';
}
}
- return \SUBFOLDER . '/src/views/' . str_replace('.php', '', $url);
+ return \SUBFOLDER.'/src/views/'.str_replace('.php', '', $url);
}
}