1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-07 15:05:43 +02:00

Merge pull request #1788 from VSEphpbb/ticket/11935

[ticket/11935] Fix invalid HTML and Errors
This commit is contained in:
Nathan Guse 2013-11-04 09:43:34 -08:00
commit ad69d5af8a
51 changed files with 96 additions and 78 deletions

View File

@ -224,7 +224,7 @@
<fieldset class="tabulated"> <fieldset class="tabulated">
<legend>{L_TITLE}</legend> <legend>{L_TITLE}</legend>
<table cellspacing="1"> <table class="table1">
<col class="row1" /><col class="row1" /><col class="row2" /> <col class="row1" /><col class="row1" /><col class="row2" />
<thead> <thead>
<tr> <tr>
@ -291,7 +291,7 @@
<fieldset class="tabulated"> <fieldset class="tabulated">
<legend>{L_TITLE}</legend> <legend>{L_TITLE}</legend>
<table cellspacing="1"> <table class="table1">
<col class="row1" /><col class="row1" /><col class="row2" /> <col class="row1" /><col class="row1" /><col class="row2" />
<thead> <thead>
<tr> <tr>
@ -331,7 +331,7 @@
<fieldset class="tabulated"> <fieldset class="tabulated">
<legend>{L_TITLE}</legend> <legend>{L_TITLE}</legend>
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_FILENAME}</th> <th>{L_FILENAME}</th>
@ -389,7 +389,7 @@
<!-- ENDIF --> <!-- ENDIF -->
</div> </div>
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_FILENAME}</th> <th>{L_FILENAME}</th>

View File

@ -56,7 +56,7 @@
<br /> <br />
<table cellspacing="1" id="down"> <table class="table1" id="down">
<thead> <thead>
<tr> <tr>
<th colspan="2">{L_TOKENS}</th> <th colspan="2">{L_TOKENS}</th>
@ -90,7 +90,7 @@
<fieldset class="tabulated"> <fieldset class="tabulated">
<legend>{L_ACP_BBCODES}</legend> <legend>{L_ACP_BBCODES}</legend>
<table cellspacing="1" id="down"> <table class="table1" id="down">
<thead> <thead>
<tr> <tr>
<th>{L_BBCODE_TAG}</th> <th>{L_BBCODE_TAG}</th>

View File

@ -62,7 +62,7 @@
<form id="acp_bots" method="post" action="{U_ACTION}"> <form id="acp_bots" method="post" action="{U_ACTION}">
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_BOT_NAME}</th> <th>{L_BOT_NAME}</th>

View File

@ -6,7 +6,7 @@
<p>{L_EXTENSIONS_EXPLAIN}</p> <p>{L_EXTENSIONS_EXPLAIN}</p>
<table cellspacing="1"> <table class="table1">
<col class="row1" ><col class="row2" ><col class="row2" > <col class="row1" ><col class="row2" ><col class="row2" >
<thead> <thead>
<tr> <tr>
@ -24,11 +24,11 @@
</tr> </tr>
<!-- BEGIN enabled --> <!-- BEGIN enabled -->
<tr class="ext_enabled"> <tr class="ext_enabled">
<td><strong>{enabled.META_DISPLAY_NAME}</strong></a></td> <td><strong>{enabled.META_DISPLAY_NAME}</strong></td>
<td style="text-align: center;"><a href="{enabled.U_DETAILS}">{L_DETAILS}</a></td> <td style="text-align: center;"><a href="{enabled.U_DETAILS}">{L_DETAILS}</a></td>
<td style="text-align: center;"> <td style="text-align: center;">
<!-- BEGIN actions --> <!-- BEGIN actions -->
<a href="{enabled.actions.U_ACTION}" alt="{enabled.actions.L_ACTION}">{enabled.actions.L_ACTION}</a> <a href="{enabled.actions.U_ACTION}" title="{enabled.actions.L_ACTION}">{enabled.actions.L_ACTION}</a>
<!-- IF not enabled.actions.S_LAST_ROW -->&nbsp;|&nbsp;<!-- ENDIF --> <!-- IF not enabled.actions.S_LAST_ROW -->&nbsp;|&nbsp;<!-- ENDIF -->
<!-- END actions --> <!-- END actions -->
</td> </td>
@ -42,13 +42,13 @@
</tr> </tr>
<!-- BEGIN disabled --> <!-- BEGIN disabled -->
<tr class="ext_disabled"> <tr class="ext_disabled">
<td><strong>{disabled.META_DISPLAY_NAME}</strong></a></td> <td><strong>{disabled.META_DISPLAY_NAME}</strong></td>
<td style="text-align: center;"> <td style="text-align: center;">
<!-- IF disabled.U_DETAILS --><a href="{disabled.U_DETAILS}">{L_DETAILS}</a><!-- ENDIF --> <!-- IF disabled.U_DETAILS --><a href="{disabled.U_DETAILS}">{L_DETAILS}</a><!-- ENDIF -->
</td> </td>
<td style="text-align: center;"> <td style="text-align: center;">
<!-- BEGIN actions --> <!-- BEGIN actions -->
<a href="{disabled.actions.U_ACTION}" alt="{disabled.actions.L_ACTION}">{disabled.actions.L_ACTION}</a> <a href="{disabled.actions.U_ACTION}" title="{disabled.actions.L_ACTION}">{disabled.actions.L_ACTION}</a>
<!-- IF not disabled.actions.S_LAST_ROW -->&nbsp;|&nbsp;<!-- ENDIF --> <!-- IF not disabled.actions.S_LAST_ROW -->&nbsp;|&nbsp;<!-- ENDIF -->
<!-- END actions --> <!-- END actions -->
</td> </td>

View File

@ -440,7 +440,7 @@
<p><strong>{NAVIGATION}<!-- IF S_NO_FORUMS --> [<a href="{U_EDIT}">{L_EDIT}</a> | <a href="{U_DELETE}">{L_DELETE}</a><!-- IF not S_LINK --> | <a href="{U_SYNC}">{L_RESYNC}</a><!-- ENDIF -->]<!-- ENDIF --></strong></p> <p><strong>{NAVIGATION}<!-- IF S_NO_FORUMS --> [<a href="{U_EDIT}">{L_EDIT}</a> | <a href="{U_DELETE}">{L_DELETE}</a><!-- IF not S_LINK --> | <a href="{U_SYNC}">{L_RESYNC}</a><!-- ENDIF -->]<!-- ENDIF --></strong></p>
<!-- IF .forums --> <!-- IF .forums -->
<table cellspacing="1" class="forums"> <table class="table1 forums">
<col class="row1" /><col class="row1" /><col class="row2" /> <col class="row1" /><col class="row1" /><col class="row2" />
<tbody> <tbody>
<!-- BEGIN forums --> <!-- BEGIN forums -->

View File

@ -150,7 +150,7 @@
<a href="{U_DEFAULT_ALL}">&raquo; {L_MAKE_DEFAULT_FOR_ALL}</a> <a href="{U_DEFAULT_ALL}">&raquo; {L_MAKE_DEFAULT_FOR_ALL}</a>
</fieldset> </fieldset>
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_USERNAME}</th> <th>{L_USERNAME}</th>
@ -261,7 +261,7 @@
<form id="acp_groups" method="post" action="{U_ACTION}"> <form id="acp_groups" method="post" action="{U_ACTION}">
<table cellspacing="1"> <table class="table1">
<col class="col1" /><col class="col1" /><col class="col2" /><col class="col2" /><col class="col2" /> <col class="col1" /><col class="col1" /><col class="col2" /><col class="col2" /><col class="col2" />
<thead> <thead>
<tr> <tr>
@ -295,7 +295,7 @@
<p>{L_SPECIAL_GROUPS_EXPLAIN}</p> <p>{L_SPECIAL_GROUPS_EXPLAIN}</p>
<table cellspacing="1"> <table class="table1">
<col class="col1" /><col class="col1" /><col class="col2" /><col class="col2" /><col class="col2" /> <col class="col1" /><col class="col1" /><col class="col2" /><col class="col2" /><col class="col2" />
<thead> <thead>
<tr> <tr>

View File

@ -27,7 +27,7 @@
<p>{L_LEGEND_EXPLAIN}</p> <p>{L_LEGEND_EXPLAIN}</p>
<table cellspacing="1"> <table class="table1">
<col class="col1" /><col class="col2" /><col class="col2" /> <col class="col1" /><col class="col2" /><col class="col2" />
<thead> <thead>
<tr> <tr>
@ -106,7 +106,7 @@
<!-- IF S_TEAMPAGE_CATEGORY and CURRENT_CATEGORY_NAME --><p><strong><a href="{U_ACTION}">{L_TEAMPAGE}</a> &raquo; {CURRENT_CATEGORY_NAME}</strong></p><!-- ENDIF --> <!-- IF S_TEAMPAGE_CATEGORY and CURRENT_CATEGORY_NAME --><p><strong><a href="{U_ACTION}">{L_TEAMPAGE}</a> &raquo; {CURRENT_CATEGORY_NAME}</strong></p><!-- ENDIF -->
<table cellspacing="1"> <table class="table1">
<col class="col1" /><col class="col2" /><col class="col2" /> <col class="col1" /><col class="col2" /><col class="col2" />
<thead> <thead>
<tr> <tr>

View File

@ -74,7 +74,7 @@
<fieldset class="tabulated"> <fieldset class="tabulated">
<legend>{L_TITLE}</legend> <legend>{L_TITLE}</legend>
<table cellspacing="1" id="smilies"> <table class="table1" id="smilies">
<thead> <thead>
<tr> <tr>
<th colspan="{COLSPAN}">{L_CONFIG}</th> <th colspan="{COLSPAN}">{L_CONFIG}</th>
@ -218,7 +218,7 @@
<legend>{L_TITLE}</legend> <legend>{L_TITLE}</legend>
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_TITLE}</th> <th>{L_TITLE}</th>

View File

@ -16,7 +16,7 @@
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_USERNAME}</th> <th>{L_USERNAME}</th>

View File

@ -75,7 +75,7 @@
<form id="missing" method="post" action="{U_MISSING_ACTION}"> <form id="missing" method="post" action="{U_MISSING_ACTION}">
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_LANGUAGE_KEY}</th> <th>{L_LANGUAGE_KEY}</th>
@ -129,7 +129,7 @@
</style> </style>
<![endif]--> <![endif]-->
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<!-- IF S_EMAIL_FILE --> <!-- IF S_EMAIL_FILE -->
<tr> <tr>
@ -211,7 +211,7 @@
<p>{L_ACP_LANGUAGE_PACKS_EXPLAIN}</p> <p>{L_ACP_LANGUAGE_PACKS_EXPLAIN}</p>
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_LANGUAGE_PACK_NAME}</th> <th>{L_LANGUAGE_PACK_NAME}</th>

View File

@ -22,7 +22,7 @@
<div><br style="clear: both;" /></div> <div><br style="clear: both;" /></div>
<!-- IF .log --> <!-- IF .log -->
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_USERNAME}</th> <th>{L_USERNAME}</th>

View File

@ -78,7 +78,7 @@
<!-- EVENT acp_main_notice_after --> <!-- EVENT acp_main_notice_after -->
<table cellspacing="1" class="two-columns no-header" data-no-responsive-header="true"> <table class="table1 two-columns no-header" data-no-responsive-header="true">
<caption>{L_FORUM_STATS}</caption> <caption>{L_FORUM_STATS}</caption>
<col class="col1" /><col class="col2" /><col class="col1" /><col class="col2" /> <col class="col1" /><col class="col2" /><col class="col1" /><col class="col2" />
<thead> <thead>
@ -216,7 +216,7 @@
<div style="text-align: right;"><a href="{U_ADMIN_LOG}">&raquo; {L_VIEW_ADMIN_LOG}</a></div> <div style="text-align: right;"><a href="{U_ADMIN_LOG}">&raquo; {L_VIEW_ADMIN_LOG}</a></div>
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_USERNAME}</th> <th>{L_USERNAME}</th>
@ -249,7 +249,7 @@
<div style="text-align: right;"><a href="{U_INACTIVE_USERS}">&raquo; {L_VIEW_INACTIVE_USERS}</a></div> <div style="text-align: right;"><a href="{U_INACTIVE_USERS}">&raquo; {L_VIEW_INACTIVE_USERS}</a></div>
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_USERNAME}</th> <th>{L_USERNAME}</th>

View File

@ -132,7 +132,7 @@
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<table cellspacing="1"> <table class="table1">
<tbody> <tbody>
<tr> <tr>
<td class="row3">{NAVIGATION}<!-- IF S_NO_MODULES --> [<a href="{U_EDIT}">{L_EDIT}</a> | <a href="{U_DELETE}">{L_DELETE}</a> | <!-- IF MODULE_ENABLED --><a href="{U_DISABLE}">{L_DISABLE}</a><!-- ELSE --><a href="{U_ENABLE}">{L_ENABLE}</a><!-- ENDIF -->]<!-- ENDIF --></td> <td class="row3">{NAVIGATION}<!-- IF S_NO_MODULES --> [<a href="{U_EDIT}">{L_EDIT}</a> | <a href="{U_DELETE}">{L_DELETE}</a> | <!-- IF MODULE_ENABLED --><a href="{U_DISABLE}">{L_DISABLE}</a><!-- ELSE --><a href="{U_ENABLE}">{L_ENABLE}</a><!-- ENDIF -->]<!-- ENDIF --></td>
@ -141,7 +141,7 @@
</table> </table>
<!-- IF .modules --> <!-- IF .modules -->
<table cellspacing="1"> <table class="table1">
<col class="row1" /><col class="row1" /><col class="row2" /><col class="row2" /> <col class="row1" /><col class="row1" /><col class="row2" /><col class="row2" />
<tbody> <tbody>
<!-- BEGIN modules --> <!-- BEGIN modules -->

View File

@ -91,7 +91,7 @@
<!-- BEGIN auth --> <!-- BEGIN auth -->
<div class="permissions-panel" id="options00{auth.S_ROW_COUNT}"<!-- IF auth.S_FIRST_ROW --><!-- ELSE --> style="display: none;"<!-- ENDIF -->> <div class="permissions-panel" id="options00{auth.S_ROW_COUNT}"<!-- IF auth.S_FIRST_ROW --><!-- ELSE --> style="display: none;"<!-- ENDIF -->>
<div class="tablewrap"> <div class="tablewrap">
<table id="table00{auth.S_ROW_COUNT}" cellspacing="1" class="not-responsive"> <table id="table00{auth.S_ROW_COUNT}" class="table1 not-responsive">
<colgroup> <colgroup>
<col class="permissions-name" /> <col class="permissions-name" />
<col class="permissions-yes" /> <col class="permissions-yes" />
@ -142,7 +142,7 @@
<form id="acp_roles" method="post" action="{U_ACTION}"> <form id="acp_roles" method="post" action="{U_ACTION}">
<table cellspacing="1"> <table class="table1">
<col class="col2" /><col class="col2" /><col class="col1" /><col class="col2" /><col class="col2" /> <col class="col2" /><col class="col2" /><col class="col1" /><col class="col2" /><col class="col2" />
<thead> <thead>
<tr> <tr>

View File

@ -185,7 +185,7 @@
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_FIELD_IDENT}</th> <th>{L_FIELD_IDENT}</th>

View File

@ -8,7 +8,7 @@
<p>{L_PRUNE_SUCCESS}</p> <p>{L_PRUNE_SUCCESS}</p>
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_FORUM}</th> <th>{L_FORUM}</th>

View File

@ -65,7 +65,7 @@
<fieldset class="tabulated"> <fieldset class="tabulated">
<legend>{L_ACP_MANAGE_RANKS}</legend> <legend>{L_ACP_MANAGE_RANKS}</legend>
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_RANK_IMAGE}</th> <th>{L_RANK_IMAGE}</th>

View File

@ -68,7 +68,7 @@
<legend>{L_ACP_REASONS}</legend> <legend>{L_ACP_REASONS}</legend>
<!-- IF .reasons --> <!-- IF .reasons -->
<table cellspacing="1"> <table class="table1">
<col class="row1" /><col class="row1" /><col class="row2" /> <col class="row1" /><col class="row1" /><col class="row2" />
<thead> <thead>
<tr> <tr>

View File

@ -112,7 +112,7 @@
<legend>{L_INDEX_STATS}{L_COLON} {backend.L_NAME} <!-- IF backend.S_ACTIVE -->({L_ACTIVE}) <!-- ENDIF --></legend> <legend>{L_INDEX_STATS}{L_COLON} {backend.L_NAME} <!-- IF backend.S_ACTIVE -->({L_ACTIVE}) <!-- ENDIF --></legend>
<table cellspacing="1"> <table class="table1">
<caption>{backend.L_NAME} <!-- IF backend.S_ACTIVE -->({L_ACTIVE}) <!-- ENDIF --></caption> <caption>{backend.L_NAME} <!-- IF backend.S_ACTIVE -->({L_ACTIVE}) <!-- ENDIF --></caption>
<col class="col1" /><col class="col2" /><col class="col1" /><col class="col2" /> <col class="col1" /><col class="col2" /><col class="col1" /><col class="col2" />
<thead> <thead>

View File

@ -79,7 +79,7 @@
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF .styles_list --> <!-- IF .styles_list -->
<table cellspacing="1" class="styles"> <table class="table1 styles">
<thead> <thead>
<tr> <tr>
<th>{L_STYLE_NAME}</th> <th>{L_STYLE_NAME}</th>

View File

@ -125,7 +125,7 @@
<form id="user_groups" method="post" action="{U_ACTION}"> <form id="user_groups" method="post" action="{U_ACTION}">
<table cellspacing="1"> <table class="table1">
<tbody> <tbody>
<!-- BEGIN group --> <!-- BEGIN group -->
<!-- IF group.S_NEW_GROUP_TYPE --> <!-- IF group.S_NEW_GROUP_TYPE -->
@ -164,7 +164,7 @@
</div> </div>
<!-- IF .attach --> <!-- IF .attach -->
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_FILENAME}</th> <th>{L_FILENAME}</th>

View File

@ -7,7 +7,7 @@
</div> </div>
<!-- IF .log --> <!-- IF .log -->
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_REPORT_BY}</th> <th>{L_REPORT_BY}</th>

View File

@ -1,7 +1,7 @@
<form id="list" method="post" action="{U_ACTION}"> <form id="list" method="post" action="{U_ACTION}">
<!-- IF .warn --> <!-- IF .warn -->
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_REPORT_BY}</th> <th>{L_REPORT_BY}</th>

View File

@ -47,7 +47,7 @@
<input class="button2" name="add" type="submit" value="{L_ADD_WORD}" /> <input class="button2" name="add" type="submit" value="{L_ADD_WORD}" />
</p> </p>
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_WORD}</th> <th>{L_WORD}</th>

View File

@ -732,6 +732,11 @@ td {
text-align: right; text-align: right;
} }
.table1 {
border-collapse: separate;
border-spacing: 1px;
}
table.type2 { table.type2 {
border: none; border: none;
background: none; background: none;

View File

@ -14,7 +14,7 @@
<fieldset class="tabulated"> <fieldset class="tabulated">
<legend>{L_QUESTIONS}</legend> <legend>{L_QUESTIONS}</legend>
<table cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th colspan="3">{L_QUESTIONS}</th> <th colspan="3">{L_QUESTIONS}</th>

View File

@ -11,8 +11,15 @@
color: #fff; color: #fff;
} }
table {
border-collapse: separate;
border-spacing: 0;
border: 0;
}
td { td {
border: solid 1px #333; border: solid 1px #333;
padding: 1px;
} }
.over { .over {
@ -44,7 +51,7 @@
numberList[4] = 'CC'; numberList[4] = 'CC';
numberList[5] = 'FF'; numberList[5] = 'FF';
document.writeln('<table cellspacing="0" cellpadding="0" border="0">'); document.writeln('<table>');
for (r = 0; r < 6; r++) for (r = 0; r < 6; r++)
{ {
@ -56,7 +63,7 @@
{ {
color = String(numberList[r]) + String(numberList[g]) + String(numberList[b]); color = String(numberList[r]) + String(numberList[g]) + String(numberList[b]);
document.write('<td style="background-color: #' + color + ';" onmouseover="this.className=\'over\'" onmouseout="this.className=\'out\'">'); document.write('<td style="background-color: #' + color + ';" onmouseover="this.className=\'over\'" onmouseout="this.className=\'out\'">');
document.write('<a href="#" onclick="cell(\'' + color + '\'); return false;"><img src="{T_IMAGES_PATH}spacer.gif" width="15" height="12" alt="#' + color + '" title="#' + color + '" \/><\/a>'); document.write('<a href="#" onclick="cell(\'' + color + '\'); return false;"><img src="{T_IMAGES_PATH}spacer.gif" width="13" height="10" alt="#' + color + '" title="#' + color + '" \/><\/a>');
document.writeln('<\/td>'); document.writeln('<\/td>');
} }
} }

View File

@ -22,7 +22,7 @@
<!-- ENDIF --> <!-- ENDIF -->
<!-- IF S_LIST --> <!-- IF S_LIST -->
<table cellspacing="1"> <table class="table1">
<caption>{L_AVAILABLE_CONVERTORS}</caption> <caption>{L_AVAILABLE_CONVERTORS}</caption>
<col class="col1" /><col class="col2" /><col class="col1" /><col class="col2" /> <col class="col1" /><col class="col2" /><col class="col1" /><col class="col2" />
<thead> <thead>

View File

@ -395,7 +395,7 @@
<p>{L_MAPPING_FILE_STRUCTURE}</p> <p>{L_MAPPING_FILE_STRUCTURE}</p>
<table cellspacing="1"> <table class="table1">
<col class="row1" /><col class="row2" /><col class="row1" /> <col class="row1" /><col class="row2" /><col class="row1" />
<thead> <thead>
<tr> <tr>

View File

@ -76,7 +76,7 @@
<!-- BEGIN category --> <!-- BEGIN category -->
<div class="permissions-panel" id="options{p_mask.S_ROW_COUNT}{p_mask.f_mask.S_ROW_COUNT}{p_mask.f_mask.category.S_ROW_COUNT}" <!-- IF p_mask.S_FIRST_ROW and p_mask.f_mask.S_FIRST_ROW and p_mask.f_mask.category.S_FIRST_ROW --><!-- ELSE --> style="display: none;"<!-- ENDIF -->> <div class="permissions-panel" id="options{p_mask.S_ROW_COUNT}{p_mask.f_mask.S_ROW_COUNT}{p_mask.f_mask.category.S_ROW_COUNT}" <!-- IF p_mask.S_FIRST_ROW and p_mask.f_mask.S_FIRST_ROW and p_mask.f_mask.category.S_FIRST_ROW --><!-- ELSE --> style="display: none;"<!-- ENDIF -->>
<div class="tablewrap"> <div class="tablewrap">
<table id="table{p_mask.S_ROW_COUNT}{p_mask.f_mask.S_ROW_COUNT}{p_mask.f_mask.category.S_ROW_COUNT}" cellspacing="1" class="not-responsive"> <table id="table{p_mask.S_ROW_COUNT}{p_mask.f_mask.S_ROW_COUNT}{p_mask.f_mask.category.S_ROW_COUNT}" class="table1 not-responsive">
<colgroup> <colgroup>
<col class="permissions-name" /> <col class="permissions-name" />
<col class="permissions-yes" /> <col class="permissions-yes" />

View File

@ -1,7 +1,7 @@
<!-- BEGIN role_mask --> <!-- BEGIN role_mask -->
<table cellspacing="1"> <table class="table1">
<caption><!-- IF role_mask.FORUM_ID -->{L_FORUM}{L_COLON} <!-- ENDIF -->{role_mask.NAME}</caption> <caption><!-- IF role_mask.FORUM_ID -->{L_FORUM}{L_COLON} <!-- ENDIF -->{role_mask.NAME}</caption>
<tbody> <tbody>
<tr> <tr>

View File

@ -8,7 +8,7 @@
<br /> <br />
<table cellspacing="1" class="type1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_TRACE_WHO}</th> <th>{L_TRACE_WHO}</th>

View File

@ -39,7 +39,7 @@ $lang = array_merge($lang, array(
'EXTENSIONS' => 'Extensions', 'EXTENSIONS' => 'Extensions',
'EXTENSIONS_ADMIN' => 'Extensions Manager', 'EXTENSIONS_ADMIN' => 'Extensions Manager',
'EXTENSIONS_EXPLAIN' => 'The Extensions Manager is a tool in your phpBB Board which allows you to manage all of your extensions statuses and view information about them.', 'EXTENSIONS_EXPLAIN' => 'The Extensions Manager is a tool in your phpBB Board which allows you to manage all of your extensions statuses and view information about them.',
'EXTENSION_INVALID_LIST' => 'The "%s" extension is not valid.<br /><p>%s</p>', 'EXTENSION_INVALID_LIST' => 'The "%s" extension is not valid.<br />%s<br /><br />',
'EXTENSION_NOT_AVAILABLE' => 'The selected extension is not available for this board, please verify your phpBB and PHP versions are allowed (see the details page).', 'EXTENSION_NOT_AVAILABLE' => 'The selected extension is not available for this board, please verify your phpBB and PHP versions are allowed (see the details page).',
'DETAILS' => 'Details', 'DETAILS' => 'Details',

View File

@ -98,7 +98,8 @@
<!-- IF U_PREVIOUS_PAGE --><a href="{U_PREVIOUS_PAGE}" class="left-box arrow-{S_CONTENT_FLOW_BEGIN}">{L_PREVIOUS}</a><!-- ENDIF --> <!-- IF U_PREVIOUS_PAGE --><a href="{U_PREVIOUS_PAGE}" class="left-box arrow-{S_CONTENT_FLOW_BEGIN}">{L_PREVIOUS}</a><!-- ENDIF -->
<label>{L_DISPLAY_TOPICS}{L_COLON} {S_SELECT_SORT_DAYS}</label> <label>{L_DISPLAY_TOPICS}{L_COLON} {S_SELECT_SORT_DAYS}</label>
<label>{L_SORT_BY} {S_SELECT_SORT_KEY}</label> <label>{L_SORT_BY} {S_SELECT_SORT_KEY}</label>
<label>{S_SELECT_SORT_DIR} <input type="submit" name="sort" value="{L_GO}" class="button2" /></label> <label>{S_SELECT_SORT_DIR}</label>
<input type="submit" name="sort" value="{L_GO}" class="button2" />
</fieldset> </fieldset>
<hr /> <hr />

View File

@ -147,7 +147,7 @@
<h3>{L_LATEST_LOGS}</h3> <h3>{L_LATEST_LOGS}</h3>
<table class="table1" cellspacing="0"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th class="name">{L_ACTION}</th> <th class="name">{L_ACTION}</th>

View File

@ -21,7 +21,7 @@
</li> </li>
</ul> </ul>
<table cellspacing="1" class="table1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_USERNAME}</th> <th>{L_USERNAME}</th>

View File

@ -64,7 +64,7 @@
</li> </li>
</ul> </ul>
<table cellspacing="1" class="table1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_REPORT_BY}</th> <th>{L_REPORT_BY}</th>

View File

@ -264,7 +264,7 @@
<!-- IF POST_IPADDR -->{POST_IPADDR} ({POST_IP})<!-- ELSE -->{POST_IP}<!-- IF U_LOOKUP_IP --> (<a href="{U_LOOKUP_IP}">{L_LOOKUP_IP}</a>)<!-- ENDIF --><!-- ENDIF --> <!-- IF POST_IPADDR -->{POST_IPADDR} ({POST_IP})<!-- ELSE -->{POST_IP}<!-- IF U_LOOKUP_IP --> (<a href="{U_LOOKUP_IP}">{L_LOOKUP_IP}</a>)<!-- ENDIF --><!-- ENDIF -->
<!-- ENDIF --></p> <!-- ENDIF --></p>
<table class="table1" cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th class="name">{L_OTHER_USERS}</th> <th class="name">{L_OTHER_USERS}</th>
@ -285,7 +285,7 @@
</tbody> </tbody>
</table> </table>
<table class="table1" cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th class="name">{L_IPS_POSTED_FROM}</th> <th class="name">{L_IPS_POSTED_FROM}</th>

View File

@ -33,7 +33,7 @@
<h3>{L_MOST_WARNINGS}</h3> <h3>{L_MOST_WARNINGS}</h3>
<!-- IF .highest --> <!-- IF .highest -->
<table class="table1" cellspacing="0"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th class="name">{L_USERNAME}</th> <th class="name">{L_USERNAME}</th>
@ -67,7 +67,7 @@
<h3>{L_LATEST_WARNINGS}</h3> <h3>{L_LATEST_WARNINGS}</h3>
<!-- IF .latest --> <!-- IF .latest -->
<table class="table1" cellspacing="0"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th class="name">{L_USERNAME}</th> <th class="name">{L_USERNAME}</th>

View File

@ -21,7 +21,7 @@
</li> </li>
</ul> </ul>
<table class="table1" cellspacing="0"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th class="name">{L_USERNAME}</th> <th class="name">{L_USERNAME}</th>

View File

@ -55,7 +55,7 @@
<div class="forumbg forumbg-table"> <div class="forumbg forumbg-table">
<div class="inner"> <div class="inner">
<table class="table1" cellspacing="1" id="memberlist"> <table class="table1" id="memberlist">
<thead> <thead>
<tr> <tr>
<th class="name" data-dfn="{L_RANK}{L_COMMA_SEPARATOR}<!-- IF S_SHOW_GROUP and .memberrow -->{L_GROUP_LEADER}<!-- ELSE -->{L_USERNAME}<!-- ENDIF -->"><span class="rank-img"><a href="{U_SORT_RANK}">{L_RANK}</a></span><a href="{U_SORT_USERNAME}"><!-- IF S_SHOW_GROUP and .memberrow -->{L_GROUP_LEADER}<!-- ELSE -->{L_USERNAME}<!-- ENDIF --></a></th> <th class="name" data-dfn="{L_RANK}{L_COMMA_SEPARATOR}<!-- IF S_SHOW_GROUP and .memberrow -->{L_GROUP_LEADER}<!-- ELSE -->{L_USERNAME}<!-- ENDIF -->"><span class="rank-img"><a href="{U_SORT_RANK}">{L_RANK}</a></span><a href="{U_SORT_USERNAME}"><!-- IF S_SHOW_GROUP and .memberrow -->{L_GROUP_LEADER}<!-- ELSE -->{L_USERNAME}<!-- ENDIF --></a></th>
@ -85,7 +85,7 @@
<div class="forumbg forumbg-table"> <div class="forumbg forumbg-table">
<div class="inner"> <div class="inner">
<table class="table1" cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<!-- IF not S_LEADERS_SET --> <!-- IF not S_LEADERS_SET -->
@ -143,7 +143,8 @@
<!-- IF U_PREVIOUS_PAGE --><a href="{U_PREVIOUS_PAGE}" class="left-box arrow-{S_CONTENT_FLOW_BEGIN}">{L_PREVIOUS}</a><!-- ENDIF --> <!-- IF U_PREVIOUS_PAGE --><a href="{U_PREVIOUS_PAGE}" class="left-box arrow-{S_CONTENT_FLOW_BEGIN}">{L_PREVIOUS}</a><!-- ENDIF -->
<!-- IF U_NEXT_PAGE --><a href="{U_NEXT_PAGE}" class="right-box arrow-{S_CONTENT_FLOW_END}">{L_NEXT}</a><!-- ENDIF --> <!-- IF U_NEXT_PAGE --><a href="{U_NEXT_PAGE}" class="right-box arrow-{S_CONTENT_FLOW_END}">{L_NEXT}</a><!-- ENDIF -->
<label for="sk">{L_SELECT_SORT_METHOD}{L_COLON} <select name="sk" id="sk">{S_MODE_SELECT}</select></label> <label for="sk">{L_SELECT_SORT_METHOD}{L_COLON} <select name="sk" id="sk">{S_MODE_SELECT}</select></label>
<label for="sd">{L_ORDER} <select name="sd" id="sd">{S_ORDER_SELECT}</select> <input type="submit" name="sort" value="{L_SUBMIT}" class="button2" /></label> <label for="sd">{L_ORDER} <select name="sd" id="sd">{S_ORDER_SELECT}</select></label>
<input type="submit" name="sort" value="{L_SUBMIT}" class="button2" />
</fieldset> </fieldset>
<!-- ENDIF --> <!-- ENDIF -->

View File

@ -8,7 +8,7 @@
<div class="forumbg forumbg-table"> <div class="forumbg forumbg-table">
<div class="inner"> <div class="inner">
<table class="table1" cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th class="name" data-dfn="{L_RANK}{L_COMMA_SEPARATOR}{L_USERNAME}"><span class="rank-img">{L_RANK}&nbsp;</span><!-- IF group.U_GROUP --><a href="{group.U_GROUP}">{group.GROUP_NAME}</a><!-- ELSE -->{group.GROUP_NAME}<!-- ENDIF --></th> <th class="name" data-dfn="{L_RANK}{L_COMMA_SEPARATOR}{L_USERNAME}"><span class="rank-img">{L_RANK}&nbsp;</span><!-- IF group.U_GROUP --><a href="{group.U_GROUP}">{group.GROUP_NAME}</a><!-- ELSE -->{group.GROUP_NAME}<!-- ENDIF --></th>

View File

@ -95,7 +95,7 @@
<div class="forumbg forumbg-table"> <div class="forumbg forumbg-table">
<div class="inner"> <div class="inner">
<table class="table1" cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th colspan="2" class="name">{L_RECENT_SEARCHES}</th> <th colspan="2" class="name">{L_RECENT_SEARCHES}</th>

View File

@ -160,7 +160,8 @@
<!-- IF U_NEXT_PAGE --><a href="{U_NEXT_PAGE}" class="right-box arrow-{S_CONTENT_FLOW_END}">{L_NEXT}</a><!-- ENDIF --> <!-- IF U_NEXT_PAGE --><a href="{U_NEXT_PAGE}" class="right-box arrow-{S_CONTENT_FLOW_END}">{L_NEXT}</a><!-- ENDIF -->
<!-- IF S_SELECT_SORT_DAYS or S_SELECT_SORT_KEY --> <!-- IF S_SELECT_SORT_DAYS or S_SELECT_SORT_KEY -->
<label><!-- IF S_SHOW_TOPICS -->{L_DISPLAY_POSTS}<!-- ELSE -->{L_SORT_BY}</label><label><!-- ENDIF --> {S_SELECT_SORT_DAYS}<!-- IF S_SELECT_SORT_KEY --></label> <label>{S_SELECT_SORT_KEY}</label> <label><!-- IF S_SHOW_TOPICS -->{L_DISPLAY_POSTS}<!-- ELSE -->{L_SORT_BY}</label><label><!-- ENDIF --> {S_SELECT_SORT_DAYS}<!-- IF S_SELECT_SORT_KEY --></label> <label>{S_SELECT_SORT_KEY}</label>
<label>{S_SELECT_SORT_DIR}<!-- ENDIF --> <input type="submit" name="sort" value="{L_GO}" class="button2" /></label> <label>{S_SELECT_SORT_DIR}<!-- ENDIF --></label>
<input type="submit" name="sort" value="{L_GO}" class="button2" />
<!-- ENDIF --> <!-- ENDIF -->
</fieldset> </fieldset>

View File

@ -77,7 +77,7 @@
<!-- ELSEIF S_LIST --> <!-- ELSEIF S_LIST -->
<!-- IF .leader --> <!-- IF .leader -->
<table class="table1" cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th class="name">{L_GROUP_LEAD}</th> <th class="name">{L_GROUP_LEAD}</th>
@ -103,7 +103,7 @@
<!-- BEGIN member --> <!-- BEGIN member -->
<!-- IF member.S_PENDING --> <!-- IF member.S_PENDING -->
<table class="table1" cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th class="name">{L_GROUP_PENDING}</th> <th class="name">{L_GROUP_PENDING}</th>
@ -119,7 +119,7 @@
</tbody> </tbody>
</table> </table>
<!-- ENDIF --> <!-- ENDIF -->
<table class="table1" cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th class="name">{L_GROUP_APPROVED}</th> <th class="name">{L_GROUP_APPROVED}</th>
@ -140,7 +140,7 @@
</tr> </tr>
<!-- ENDIF --> <!-- ENDIF -->
<!-- BEGINELSE --> <!-- BEGINELSE -->
<table class="table1" cellspacing="1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th class="name">{L_MEMBERS}</th> <th class="name">{L_MEMBERS}</th>

View File

@ -9,7 +9,7 @@
<p>{TITLE_EXPLAIN}</p> <p>{TITLE_EXPLAIN}</p>
<!-- IF MODE == 'notification_options' --> <!-- IF MODE == 'notification_options' -->
<table class="table1" cellspacing="1"> <table class="table1">
<thead> <thead>
<th>{L_NOTIFICATION_TYPE}</th> <th>{L_NOTIFICATION_TYPE}</th>
<!-- BEGIN notification_methods --> <!-- BEGIN notification_methods -->

View File

@ -126,7 +126,8 @@
<!-- IF U_NEXT_PAGE --><a href="{U_NEXT_PAGE}" class="right-box arrow-{S_CONTENT_FLOW_END}">{L_NEXT}</a><!-- ENDIF --> <!-- IF U_NEXT_PAGE --><a href="{U_NEXT_PAGE}" class="right-box arrow-{S_CONTENT_FLOW_END}">{L_NEXT}</a><!-- ENDIF -->
<label>{L_DISPLAY}{L_COLON} {S_SELECT_SORT_DAYS}</label> <label>{L_DISPLAY}{L_COLON} {S_SELECT_SORT_DAYS}</label>
<label>{L_SORT_BY} {S_SELECT_SORT_KEY}</label> <label>{L_SORT_BY} {S_SELECT_SORT_KEY}</label>
<label>{S_SELECT_SORT_DIR} <input type="submit" name="sort" value="{L_GO}" class="button2" /></label> <label>{S_SELECT_SORT_DIR}</label>
<input type="submit" name="sort" value="{L_GO}" class="button2" />
<input type="hidden" name="cur_folder_id" value="{CUR_FOLDER_ID}" /> <input type="hidden" name="cur_folder_id" value="{CUR_FOLDER_ID}" />
</fieldset> </fieldset>
<!-- ENDIF --> <!-- ENDIF -->

View File

@ -15,7 +15,7 @@
<!-- ENDIF --> <!-- ENDIF -->
<p>{L_PROFILE_AUTOLOGIN_KEYS}</p><br /> <p>{L_PROFILE_AUTOLOGIN_KEYS}</p><br />
<table cellspacing="1" class="table1"> <table class="table1">
<thead> <thead>
<tr> <tr>
<th>{L_MARK}</th> <th>{L_MARK}</th>

View File

@ -211,7 +211,8 @@
<!-- IF not S_IS_BOT --> <!-- IF not S_IS_BOT -->
<label>{L_DISPLAY_TOPICS}{L_COLON} {S_SELECT_SORT_DAYS}</label> <label>{L_DISPLAY_TOPICS}{L_COLON} {S_SELECT_SORT_DAYS}</label>
<label>{L_SORT_BY} {S_SELECT_SORT_KEY}</label> <label>{L_SORT_BY} {S_SELECT_SORT_KEY}</label>
<label>{S_SELECT_SORT_DIR} <input type="submit" name="sort" value="{L_GO}" class="button2" /></label> <label>{S_SELECT_SORT_DIR}</label>
<input type="submit" name="sort" value="{L_GO}" class="button2" />
<!-- ENDIF --> <!-- ENDIF -->
</fieldset> </fieldset>
</form> </form>

View File

@ -16,7 +16,7 @@
<div class="forumbg forumbg-table"> <div class="forumbg forumbg-table">
<div class="inner"> <div class="inner">
<table class="table1" cellspacing="1"> <table class="table1">
<!-- IF .user_row --> <!-- IF .user_row -->
<thead> <thead>

View File

@ -283,7 +283,8 @@
<!-- IF U_NEXT_PAGE --><a href="{U_NEXT_PAGE}" class="right-box arrow-{S_CONTENT_FLOW_END}">{L_NEXT}</a><!-- ENDIF --> <!-- IF U_NEXT_PAGE --><a href="{U_NEXT_PAGE}" class="right-box arrow-{S_CONTENT_FLOW_END}">{L_NEXT}</a><!-- ENDIF -->
<!-- IF not S_IS_BOT --> <!-- IF not S_IS_BOT -->
<label>{L_DISPLAY_POSTS}{L_COLON} {S_SELECT_SORT_DAYS}</label> <label>{L_DISPLAY_POSTS}{L_COLON} {S_SELECT_SORT_DAYS}</label>
<label>{L_SORT_BY} {S_SELECT_SORT_KEY}</label> <label>{S_SELECT_SORT_DIR} <input type="submit" name="sort" value="{L_GO}" class="button2" /></label> <label>{L_SORT_BY} {S_SELECT_SORT_KEY}</label> <label>{S_SELECT_SORT_DIR}</label>
<input type="submit" name="sort" value="{L_GO}" class="button2" />
<!-- ENDIF --> <!-- ENDIF -->
</fieldset> </fieldset>