Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[K5.2] Impossible to choose birthdate with datepicker #7996 #8000

Merged
merged 1 commit into from
Apr 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.