blob: 4556ea5f946ee3dfaa3ff387f99db3214bc92d10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
(function($) { // Avoid conflicts with other libraries
$('#tz_date').change(function() {
phpbb.timezone_switch_date(false);
});
$(document).ready(
phpbb.timezone_enable_date_selection
);
})(jQuery); // Avoid conflicts with other libraries
|