add (blank?) label param to other instances of datetimesel

This commit is contained in:
redmatrix 2015-11-24 14:54:13 -08:00
parent 74a40adece
commit bae7b034e6
3 changed files with 6 additions and 4 deletions

View File

@ -24,4 +24,6 @@ Abstraction of nomadic identity so that sending/receiving to/from singleton netw
CalDAV/CardDAV CalDAV/CardDAV
E-Commerce E-Commerce
Auto Updater

View File

@ -153,7 +153,7 @@ function dob($dob) {
* id and name of datetimepicker (defaults to "datetimepicker") * id and name of datetimepicker (defaults to "datetimepicker")
*/ */
function datesel($format, $min, $max, $default, $id = 'datepicker') { function datesel($format, $min, $max, $default, $id = 'datepicker') {
return datetimesel($format, $min, $max, $default, $id,true, false, '', ''); return datetimesel($format, $min, $max, $default, '', $id,true, false, '', '');
} }
/** /**
@ -168,7 +168,7 @@ function datesel($format, $min, $max, $default, $id = 'datepicker') {
* id and name of datetimepicker (defaults to "timepicker") * id and name of datetimepicker (defaults to "timepicker")
*/ */
function timesel($format, $h, $m, $id='timepicker') { function timesel($format, $h, $m, $id='timepicker') {
return datetimesel($format,new DateTime(),new DateTime(),new DateTime("$h:$m"),$id,false,true); return datetimesel($format,new DateTime(),new DateTime(),new DateTime("$h:$m"),'', $id,false,true);
} }
/** /**

View File

@ -1 +1 @@
2015-11-23.1225 2015-11-24.1226