From d29340b0fda7a768f6941088808de7e9e41aa616 Mon Sep 17 00:00:00 2001 From: Evan Winslow Date: Wed, 4 Aug 2010 17:57:18 +0000 Subject: Updating date-related inputs to accept timestamps as well as string input --- views/default/input/month.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'views/default/input/month.php') 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 @@ '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 -- cgit v1.2.3