aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-11-24 14:54:13 -0800
committerredmatrix <redmatrix@redmatrix.me>2015-11-24 14:54:13 -0800
commitbae7b034e6c370ef0d8a62583db490842588bf77 (patch)
tree8b887dc82bacc275c453beec57292c69a34b5d10
parent74a40adece61bdccbbf5af996e7ff06fcbf1a2b7 (diff)
downloadvolse-hubzilla-bae7b034e6c370ef0d8a62583db490842588bf77.tar.gz
volse-hubzilla-bae7b034e6c370ef0d8a62583db490842588bf77.tar.bz2
volse-hubzilla-bae7b034e6c370ef0d8a62583db490842588bf77.zip
add (blank?) label param to other instances of datetimesel
-rw-r--r--doc/roadmapv4.bb4
-rw-r--r--include/datetime.php4
-rw-r--r--version.inc2
3 files changed, 6 insertions, 4 deletions
diff --git a/doc/roadmapv4.bb b/doc/roadmapv4.bb
index 4670c73b3..33a3384c5 100644
--- a/doc/roadmapv4.bb
+++ b/doc/roadmapv4.bb
@@ -24,4 +24,6 @@ Abstraction of nomadic identity so that sending/receiving to/from singleton netw
CalDAV/CardDAV
-E-Commerce \ No newline at end of file
+E-Commerce
+
+Auto Updater \ No newline at end of file
diff --git a/include/datetime.php b/include/datetime.php
index ab9b061b6..f7df70a36 100644
--- a/include/datetime.php
+++ b/include/datetime.php
@@ -153,7 +153,7 @@ function dob($dob) {
* id and name of datetimepicker (defaults to "datetimepicker")
*/
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")
*/
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);
}
/**
diff --git a/version.inc b/version.inc
index 211f6c438..deff80607 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2015-11-23.1225
+2015-11-24.1226