add (blank?) label param to other instances of datetimesel
This commit is contained in:
parent
74a40adece
commit
bae7b034e6
@ -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
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1 +1 @@
|
|||||||
2015-11-23.1225
|
2015-11-24.1226
|
||||||
|
Reference in New Issue
Block a user