diff options
Diffstat (limited to 'phpBB/adm/style/acp_main.html')
| -rw-r--r-- | phpBB/adm/style/acp_main.html | 24 | 
1 files changed, 14 insertions, 10 deletions
diff --git a/phpBB/adm/style/acp_main.html b/phpBB/adm/style/acp_main.html index b644862ce1..6e28c7a0cc 100644 --- a/phpBB/adm/style/acp_main.html +++ b/phpBB/adm/style/acp_main.html @@ -26,6 +26,12 @@  		</div>  	<!-- ENDIF --> +	<!-- IF S_SEARCH_INDEX_MISSING --> +		<div class="errorbox"> +			<h3>{L_WARNING}</h3> +			<p>{L_NO_SEARCH_INDEX}</p> +		</div> +	<!-- ENDIF -->  	<!-- IF S_REMOVE_INSTALL -->  		<div class="errorbox"> @@ -78,7 +84,7 @@  	<!-- EVENT acp_main_notice_after --> -	<table cellspacing="1"> +	<table class="table1 two-columns no-header" data-no-responsive-header="true">  		<caption>{L_FORUM_STATS}</caption>  		<col class="col1" /><col class="col2" /><col class="col1" /><col class="col2" />  	<thead> @@ -168,21 +174,21 @@  				</dl>  			</form> -			<form id="action_stats_form" method="post" action="{U_ACTION}" data-ajax="true"> +			<form id="action_stats_form" method="post" action="{U_ACTION}">  				<dl>  					<dt><label for="action_stats">{L_RESYNC_STATS}</label><br /><span>{L_RESYNC_STATS_EXPLAIN}</span></dt>  					<dd><input type="hidden" name="action" value="stats" /><input class="button2" type="submit" id="action_stats" name="action_stats" value="{L_RUN}" /></dd>  				</dl>  			</form> -			<form id="action_user_form" method="post" action="{U_ACTION}" data-ajax="true"> +			<form id="action_user_form" method="post" action="{U_ACTION}">  				<dl>  					<dt><label for="action_user">{L_RESYNC_POSTCOUNTS}</label><br /><span>{L_RESYNC_POSTCOUNTS_EXPLAIN}</span></dt>  					<dd><input type="hidden" name="action" value="user" /><input class="button2" type="submit" id="action_user" name="action_user" value="{L_RUN}" /></dd>  				</dl>  			</form> -			<form id="action_db_track_form" method="post" action="{U_ACTION}" data-ajax="true"> +			<form id="action_db_track_form" method="post" action="{U_ACTION}">  				<dl>  					<dt><label for="action_db_track">{L_RESYNC_POST_MARKING}</label><br /><span>{L_RESYNC_POST_MARKING_EXPLAIN}</span></dt>  					<dd><input type="hidden" name="action" value="db_track" /><input class="button2" type="submit" id="action_db_track" name="action_db_track" value="{L_RUN}" /></dd> @@ -216,7 +222,7 @@  		<div style="text-align: right;"><a href="{U_ADMIN_LOG}">» {L_VIEW_ADMIN_LOG}</a></div> -		<table cellspacing="1"> +		<table class="table1 zebra-table">  		<thead>  		<tr>  			<th>{L_USERNAME}</th> @@ -227,8 +233,7 @@  		</thead>  		<tbody>  		<!-- BEGIN log --> -			<!-- IF log.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF --> - +			<tr>  				<td>{log.USERNAME}</td>  				<td style="text-align: center;">{log.IP}</td>  				<td style="text-align: center;">{log.DATE}</td> @@ -249,7 +254,7 @@  		<div style="text-align: right;"><a href="{U_INACTIVE_USERS}">» {L_VIEW_INACTIVE_USERS}</a></div> -		<table cellspacing="1"> +		<table class="table1 zebra-table">  		<thead>  		<tr>  			<th>{L_USERNAME}</th> @@ -261,8 +266,7 @@  		</thead>  		<tbody>  		<!-- BEGIN inactive --> -			<!-- IF inactive.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF --> - +			<tr>  				<td style="vertical-align: top;">  					{inactive.USERNAME_FULL}  					<!-- IF inactive.POSTS --><br />{L_POSTS}{L_COLON} <strong>{inactive.POSTS}</strong> [<a href="{inactive.U_SEARCH_USER}">{L_SEARCH_USER_POSTS}</a>]<!-- ENDIF -->  | 
