Skip to content

Commit

Permalink
[K5.2] Impossible to choose birthdate with datepicker #7996 (#8000)
Browse files Browse the repository at this point in the history
  • Loading branch information
xillibit committed Apr 11, 2021
1 parent 2161d42 commit a0dfaaf
Show file tree
Hide file tree
Showing 9 changed files with 53 additions and 52 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [5.2.5-dev]
### Fixed
* [#7996](https://github.com/Kunena/Kunena-Forum/issues/7996): Impossible to choose birthdate with datepicker
* An username still appears on quote even on quote not related to a message
* When quote a message from someone which have a name or an username with more than one word, it displays only the first word
* When try to enabling some integration plugins it doesn't work
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -822,18 +822,18 @@ COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHS_SEPTEMBER = "September"
COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHS_OCTOBER = "October"
COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHS_NOVEMBER = "November"
COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHS_DECEMBER = "December"
COM_KUNENA_BOOTSTRAP_DATEPICKER_SHORT_JANUARY = "Jan"
COM_KUNENA_BOOTSTRAP_DATEPICKER_SHORT_FEBRUARY = "Feb"
COM_KUNENA_BOOTSTRAP_DATEPICKER_SHORT_MARCH = "Mar"
COM_KUNENA_BOOTSTRAP_DATEPICKER_SHORT_APRIL = "Apr"
COM_KUNENA_BOOTSTRAP_DATEPICKER_SHORT_MAY = "May"
COM_KUNENA_BOOTSTRAP_DATEPICKER_SHORT_JUNE = "Jun"
COM_KUNENA_BOOTSTRAP_DATEPICKER_SHORT_JULY = "Jul"
COM_KUNENA_BOOTSTRAP_DATEPICKER_SHORT_AUGUST = "Aug"
COM_KUNENA_BOOTSTRAP_DATEPICKER_SHORT_SEPTEMBER = "Sep"
COM_KUNENA_BOOTSTRAP_DATEPICKER_SHORT_OCTOBER = "Oct"
COM_KUNENA_BOOTSTRAP_DATEPICKER_SHORT_NOVEMBER = "Nov"
COM_KUNENA_BOOTSTRAP_DATEPICKER_SHORT_DECEMBER = "Dec"
COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_JANUARY = "Jan"
COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_FEBRUARY = "Feb"
COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_MARCH = "Mar"
COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_APRIL = "Apr"
COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_MAY = "May"
COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_JUNE = "Jun"
COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_JULY = "Jul"
COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_AUGUST = "Aug"
COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_SEPTEMBER = "Sep"
COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_OCTOBER = "Oct"
COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_NOVEMBER = "Nov"
COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_DECEMBER = "Dec"
COM_KUNENA_BOOTSTRAP_DATEPICKER_TODAY = "Today"
COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHS_TITLE = "Months"
COM_KUNENA_BOOTSTRAP_DATEPICKER_CLEAR = "Clear"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jQuery(document).ready(function ($) {
if ($.fn.datepicker !== undefined) {
$('.input-append.date').datepicker({
orientation: "top auto",
format: "yyyy-mm-dd",
format: "mm/dd/yyyy",
language: "kunena"
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,18 @@
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHS_OCTOBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHS_NOVEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHS_DECEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_JANUARY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_FEBRUARY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_MARCH');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_APRIL');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_MAY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_JUNE');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_JULY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_AUGUST');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_SEPTEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_OCTOBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_NOVEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_DECEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_JANUARY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_FEBRUARY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_MARCH');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_APRIL');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_MAY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_JUNE');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_JULY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_AUGUST');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_SEPTEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_OCTOBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_NOVEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_DECEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_TODAY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHS_TITLE');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_CLEAR');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jQuery(document).ready(function ($) {
if ($.fn.datepicker !== undefined) {
$('.input-group.date').datepicker({
orientation: "top auto",
format: "yyyy-mm-dd",
format: "mm/dd/yyy",
language: "kunena"
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,18 @@
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHS_OCTOBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHS_NOVEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHS_DECEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_JANUARY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_FEBRUARY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_MARCH');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_APRIL');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_MAY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_JUNE');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_JULY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_AUGUST');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_SEPTEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_OCTOBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_NOVEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_DECEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_JANUARY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_FEBRUARY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_MARCH');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_APRIL');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_MAY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_JUNE');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_JULY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_AUGUST');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_SEPTEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_OCTOBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_NOVEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_DECEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_TODAY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHS_TITLE');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_CLEAR');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jQuery(document).ready(function ($) {
if ($.fn.datepicker !== undefined) {
$('.input-append.date').datepicker({
orientation: "top auto",
format: "yyyy-mm-dd",
format: "mm/dd/yyyy",
language: "kunena"
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,18 +47,18 @@
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHS_OCTOBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHS_NOVEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHS_DECEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_JANUARY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_FEBRUARY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_MARCH');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_APRIL');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_MAY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_JUNE');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_JULY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_AUGUST');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_SEPTEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_OCTOBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_NOVEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHSSHORT_DECEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_JANUARY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_FEBRUARY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_MARCH');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_APRIL');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_MAY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_JUNE');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_JULY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_AUGUST');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_SEPTEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_OCTOBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_NOVEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTH_SHORT_DECEMBER');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_TODAY');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_MONTHS_TITLE');
Text::script('COM_KUNENA_BOOTSTRAP_DATEPICKER_CLEAR');
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a0dfaaf

Please sign in to comment.