mirror of
				https://github.com/phpbb/phpbb.git
				synced 2025-10-26 21:21:32 +01:00 
			
		
		
		
	This was done because T_TEMPLATE_PATH is not always correct for js files (e.g. the inheriting style does not include these). Now we use the Twig Loader to find the correct file to link to (most specific file first, then parent styles). Also allows using @namespace convention PHPBB3-11598
		
			
				
	
	
		
			21 lines
		
	
	
		
			789 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			789 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <dl>
 | |
| 	<dt><label for="timezone">{L_BOARD_TIMEZONE}{L_COLON}</label></dt>
 | |
| 	<!-- IF S_TZ_DATE_OPTIONS -->
 | |
| 	<dd id="tz_select_date" style="display: none;">
 | |
| 		<select name="tz_date" id="tz_date" class="autowidth tz_select">
 | |
| 			<option value="">{L_SELECT_CURRENT_TIME}</option>
 | |
| 			{S_TZ_DATE_OPTIONS}
 | |
| 		</select>
 | |
| 		<input type="button" id="tz_select_date_suggest" class="button2" style="display: none;" timezone-preselect="<!-- IF S_TZ_PRESELECT -->true<!-- ELSE -->false<!-- ENDIF -->" data-l-suggestion="{L_TIMEZONE_DATE_SUGGESTION}" value="{L_TIMEZONE_DATE_SUGGESTION}" />
 | |
| 	</dd>
 | |
| 	<!-- ENDIF -->
 | |
| 	<dd>
 | |
| 		<select name="tz" id="timezone" class="autowidth tz_select">
 | |
| 			<option value="">{L_SELECT_TIMEZONE}</option>
 | |
| 			{S_TZ_OPTIONS}
 | |
| 		</select>
 | |
| 
 | |
| 		<!-- INCLUDEJS timezone.js -->
 | |
| 	</dd>
 | |
| </dl>
 |