diff options
Diffstat (limited to 'views/default/input/month.php')
-rw-r--r-- | views/default/input/month.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/views/default/input/month.php b/views/default/input/month.php index cad6562a9..01ecae384 100644 --- a/views/default/input/month.php +++ b/views/default/input/month.php @@ -1,9 +1,14 @@ <?php
+$defaults = array(
+ 'placeholder' => 'yyyy-mm',
+);
$overrides = array(
'type' => 'month',
);
-$args = array_merge($vars, $overrides);
+if (isset($vars['value']) && is_int($vars['value'])) {
+ $vars['value'] = date("Y-m", $vars['value']);
+}
-echo elgg_view('input/default', $args);
\ No newline at end of file +echo elgg_view('input/default', array_merge($defaults, $vars, $overrides));
\ No newline at end of file |