We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70c604e commit 6159c69Copy full SHA for 6159c69
dustpress.php
@@ -6,7 +6,7 @@
6
Author: Miika Arponen & Ville Siltala / Geniem Oy
7
Author URI: http://www.geniem.com
8
License: GPLv3
9
-Version: 1.0.6
+Version: 1.0.7
10
*/
11
12
final class DustPress {
helpers/strtodate.php
@@ -3,9 +3,9 @@
3
4
class Strtodate extends Helper {
5
public function output() {
- $value = $params->value;
- $format = $params->format;
- $now = $params->now;
+ $value = $this->params->value;
+ $format = $this->params->format;
+ $now = $this->params->now;
return date( $format, strtotime( $value, $now ) );
}
0 commit comments