b to strong, and remove bold for MySQL charset
This commit is contained in:
@@ -242,20 +242,20 @@ if (is_array($foreignData['disp_row'])) {
|
||||
<tr class="<?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
|
||||
<td nowrap="nowrap">
|
||||
<?php
|
||||
echo ($key_ordered_current_equals_data ? '<b>' : '')
|
||||
echo ($key_ordered_current_equals_data ? '<strong>' : '')
|
||||
.'<a href="#" title="' . $strUseThisValue
|
||||
. ($key_ordered_current_val_title != '' ? ': ' . $key_ordered_current_val_title : '') . '"'
|
||||
.' onclick="formupdate(\'' . md5($field) . '\', \''
|
||||
. PMA_jsFormat($key_ordered_current_key, false) . '\'); return false;">'
|
||||
.htmlspecialchars($key_ordered_current_key) . '</a>' . ($key_ordered_current_equals_data ? '</b>' : '');
|
||||
.htmlspecialchars($key_ordered_current_key) . '</a>' . ($key_ordered_current_equals_data ? '</strong>' : '');
|
||||
?></td>
|
||||
<td>
|
||||
<?php
|
||||
echo ($key_ordered_current_equals_data ? '<b>' : '')
|
||||
echo ($key_ordered_current_equals_data ? '<strong>' : '')
|
||||
. '<a href="#" title="' . $strUseThisValue . ($key_ordered_current_val_title != '' ? ': '
|
||||
. $key_ordered_current_val_title : '') . '" onclick="formupdate(\''
|
||||
. md5($field) . '\', \'' . PMA_jsFormat($key_ordered_current_key, false) . '\'); return false;">'
|
||||
. $key_ordered_current_val . '</a>' . ($key_ordered_current_equals_data ? '</b>' : '');
|
||||
. $key_ordered_current_val . '</a>' . ($key_ordered_current_equals_data ? '</strong>' : '');
|
||||
?></td>
|
||||
<td width="20%">
|
||||
<img src="<?php echo $GLOBALS['pmaThemeImage'] . 'spacer.png'; ?>"
|
||||
@@ -263,19 +263,19 @@ if (is_array($foreignData['disp_row'])) {
|
||||
|
||||
<td>
|
||||
<?php
|
||||
echo ($val_ordered_current_equals_data ? '<b>' : '')
|
||||
echo ($val_ordered_current_equals_data ? '<strong>' : '')
|
||||
. '<a href="#" title="' . $strUseThisValue . ($val_ordered_current_val_title != '' ? ': '
|
||||
. $val_ordered_current_val_title : '') . '" onclick="formupdate(\'' . md5($field)
|
||||
. '\', \'' . PMA_jsFormat($val_ordered_current_key, false) . '\'); return false;">'
|
||||
. $val_ordered_current_val . '</a>' . ($val_ordered_current_equals_data ? '</b>' : '');
|
||||
. $val_ordered_current_val . '</a>' . ($val_ordered_current_equals_data ? '</strong>' : '');
|
||||
?></td>
|
||||
<td nowrap="nowrap">
|
||||
<?php
|
||||
echo ($val_ordered_current_equals_data ? '<b>' : '') . '<a href="#" title="'
|
||||
echo ($val_ordered_current_equals_data ? '<strong>' : '') . '<a href="#" title="'
|
||||
. $strUseThisValue . ($val_ordered_current_val_title != '' ? ': ' . $val_ordered_current_val_title : '')
|
||||
. '" onclick="formupdate(\'' . md5($field) . '\', \''
|
||||
. PMA_jsFormat($val_ordered_current_key, false) . '\'); return false;">' . htmlspecialchars($val_ordered_current_key)
|
||||
. '</a>' . ($val_ordered_current_equals_data ? '</b>' : '');
|
||||
. '</a>' . ($val_ordered_current_equals_data ? '</strong>' : '');
|
||||
?></td>
|
||||
</tr>
|
||||
<?php
|
||||
|
16
db_qbe.php
16
db_qbe.php
@@ -353,7 +353,7 @@ for ($y = 0; $y <= $row; $y++) {
|
||||
<input type="checkbox" name="ins_row[<?php echo $w; ?>]" />
|
||||
</td>
|
||||
<td align="<?php echo $cell_align_right; ?>">
|
||||
<b><?php echo $strAnd; ?>:</b>
|
||||
<strong><?php echo $strAnd; ?>:</strong>
|
||||
</td>
|
||||
<td>
|
||||
<input type="radio" name="and_or_row[<?php echo $w; ?>]" value="and"<?php echo $chk['and']; ?> />
|
||||
@@ -366,7 +366,7 @@ for ($y = 0; $y <= $row; $y++) {
|
||||
<input type="checkbox" name="del_row[<?php echo $w; ?>]" />
|
||||
</td>
|
||||
<td align="<?php echo $cell_align_right; ?>">
|
||||
<b><?php echo $strOr; ?>:</b>
|
||||
<strong><?php echo $strOr; ?>:</strong>
|
||||
</td>
|
||||
<td>
|
||||
<input type="radio" name="and_or_row[<?php echo $w; ?>]" value="or"<?php echo $chk['or']; ?> />
|
||||
@@ -435,7 +435,7 @@ for ($y = 0; $y <= $row; $y++) {
|
||||
<input type="checkbox" name="ins_row[<?php echo $w; ?>]" />
|
||||
</td>
|
||||
<td align="<?php echo $cell_align_right; ?>">
|
||||
<b><?php echo $strAnd; ?>:</b>
|
||||
<strong><?php echo $strAnd; ?>:</strong>
|
||||
</td>
|
||||
<td>
|
||||
<input type="radio" name="and_or_row[<?php echo $w; ?>]" value="and"<?php echo $chk['and']; ?> />
|
||||
@@ -447,7 +447,7 @@ for ($y = 0; $y <= $row; $y++) {
|
||||
<input type="checkbox" name="del_row[<?php echo $w; ?>]" />
|
||||
</td>
|
||||
<td align="<?php echo $cell_align_right; ?>">
|
||||
<b><?php echo $strOr; ?>:</b>
|
||||
<strong><?php echo $strOr; ?>:</strong>
|
||||
</td>
|
||||
<td>
|
||||
<input type="radio" name="and_or_row[<?php echo $w; ?>]" value="or"<?php echo $chk['or']; ?> />
|
||||
@@ -518,9 +518,9 @@ for ($x = 0; $x < $col; $x++) {
|
||||
}
|
||||
?>
|
||||
<td align="center">
|
||||
<b><?php echo $strOr; ?>:</b>
|
||||
<strong><?php echo $strOr; ?>:</strong>
|
||||
<input type="radio" name="and_or_col[<?php echo $z; ?>]" value="or"<?php echo $chk['or']; ?> />
|
||||
<b><?php echo $strAnd; ?>:</b>
|
||||
<strong><?php echo $strAnd; ?>:</strong>
|
||||
<input type="radio" name="and_or_col[<?php echo $z; ?>]" value="and"<?php echo $chk['and']; ?> />
|
||||
<br />
|
||||
<?php echo $strQBEIns . "\n"; ?>
|
||||
@@ -549,9 +549,9 @@ for ($x = 0; $x < $col; $x++) {
|
||||
}
|
||||
?>
|
||||
<td align="center">
|
||||
<b><?php echo $strOr; ?>:</b>
|
||||
<strong><?php echo $strOr; ?>:</strong>
|
||||
<input type="radio" name="and_or_col[<?php echo $z; ?>]" value="or"<?php echo $chk['or']; ?> />
|
||||
<b><?php echo $strAnd; ?>:</b>
|
||||
<strong><?php echo $strAnd; ?>:</strong>
|
||||
<input type="radio" name="and_or_col[<?php echo $z; ?>]" value="and"<?php echo $chk['and']; ?> />
|
||||
<br />
|
||||
<?php echo $strQBEIns . "\n"; ?>
|
||||
|
@@ -40,7 +40,7 @@ if ($events) {
|
||||
|
||||
$sqlDrop = 'DROP EVENT ' . PMA_backquote($event['EVENT_NAME']);
|
||||
echo sprintf('<tr class="%s">
|
||||
<td><b>%s</b></td>
|
||||
<td><strong>%s</strong></td>
|
||||
<td>%s</td>
|
||||
<td>%s</td>
|
||||
<td>%s</td>
|
||||
|
@@ -68,7 +68,7 @@ if ($routines) {
|
||||
$sqlDropProc = 'DROP FUNCTION ' . PMA_backquote($routine['SPECIFIC_NAME']);
|
||||
}
|
||||
echo sprintf('<tr class="%s">
|
||||
<td><b>%s</b></td>
|
||||
<td><strong>%s</strong></td>
|
||||
<td>%s</td>
|
||||
<td>%s</td>
|
||||
<td>%s</td>
|
||||
|
@@ -17,8 +17,8 @@ require_once './libraries/check_user_privileges.lib.php';
|
||||
if ($is_create_db_priv) {
|
||||
// The user is allowed to create a db
|
||||
?>
|
||||
<form method="post" action="db_create.php"><b>
|
||||
<?php echo '<label for="text_create_db">' . $strCreateNewDatabase . '</label> ' . PMA_showMySQLDocu('SQL-Syntax', 'CREATE_DATABASE'); ?></b><br />
|
||||
<form method="post" action="db_create.php"><strong>
|
||||
<?php echo '<label for="text_create_db">' . $strCreateNewDatabase . '</label> ' . PMA_showMySQLDocu('SQL-Syntax', 'CREATE_DATABASE'); ?></strong><br />
|
||||
<?php echo PMA_generate_common_hidden_inputs('', '', 5); ?>
|
||||
<input type="hidden" name="reload" value="1" />
|
||||
<input type="text" name="db" value="<?php echo $db_to_create; ?>" maxlength="64" class="textfield" id="text_create_db"/>
|
||||
@@ -32,7 +32,7 @@ if ($is_create_db_priv) {
|
||||
} else {
|
||||
?>
|
||||
<!-- db creation no privileges message -->
|
||||
<b><?php echo $strCreateNewDatabase . ': ' . PMA_showMySQLDocu('SQL-Syntax', 'CREATE_DATABASE'); ?></b><br />
|
||||
<strong><?php echo $strCreateNewDatabase . ': ' . PMA_showMySQLDocu('SQL-Syntax', 'CREATE_DATABASE'); ?></strong><br />
|
||||
<?php
|
||||
echo '<span class="noPrivileges">'
|
||||
. ($cfg['ErrorIconic'] ? '<img src="' . $pmaThemeImage . 's_error2.png" width="11" height="11" hspace="2" border="0" align="middle" />' : '')
|
||||
|
@@ -54,13 +54,13 @@ if ($text_dir == 'ltr') {
|
||||
<body bgcolor="#ffffff">
|
||||
<h1><?php echo $strSQLResult; ?></h1>
|
||||
<p>
|
||||
<b><?php echo $strHost; ?>:</b> <?php echo $cfg['Server']['verbose'] ? $cfg['Server']['verbose'] : $cfg['Server']['host'] . ((!empty($cfg['Server']['port'])) ? ':' . $cfg['Server']['port'] : ''); ?><br />
|
||||
<b><?php echo $strDatabase; ?>:</b> <?php echo htmlspecialchars($db); ?><br />
|
||||
<b><?php echo $strGenTime; ?>:</b> <?php echo PMA_localisedDate(); ?><br />
|
||||
<b><?php echo $strGenBy; ?>:</b> phpMyAdmin <?php echo PMA_VERSION; ?> / MySQL <?php echo PMA_MYSQL_STR_VERSION; ?><br />
|
||||
<b><?php echo $strSQLQuery; ?>:</b> <?php echo htmlspecialchars($full_sql_query); ?>;
|
||||
<strong><?php echo $strHost; ?>:</strong> <?php echo $cfg['Server']['verbose'] ? $cfg['Server']['verbose'] : $cfg['Server']['host'] . ((!empty($cfg['Server']['port'])) ? ':' . $cfg['Server']['port'] : ''); ?><br />
|
||||
<strong><?php echo $strDatabase; ?>:</strong> <?php echo htmlspecialchars($db); ?><br />
|
||||
<strong><?php echo $strGenTime; ?>:</strong> <?php echo PMA_localisedDate(); ?><br />
|
||||
<strong><?php echo $strGenBy; ?>:</strong> phpMyAdmin <?php echo PMA_VERSION; ?> / MySQL <?php echo PMA_MYSQL_STR_VERSION; ?><br />
|
||||
<strong><?php echo $strSQLQuery; ?>:</strong> <?php echo htmlspecialchars($full_sql_query); ?>;
|
||||
<?php if (isset($num_rows)) { ?><br />
|
||||
<b><?php echo $strRows; ?>:</b> <?php echo $num_rows; ?>
|
||||
<strong><?php echo $strRows; ?>:</strong> <?php echo $num_rows; ?>
|
||||
<?php } ?>
|
||||
</p>
|
||||
|
||||
|
@@ -90,11 +90,11 @@ function PMA_getRelationsParam($verbose = false)
|
||||
*/
|
||||
function PMA_printRelationsParamDiagnostic($cfgRelation)
|
||||
{
|
||||
$messages['error'] = '<font color="red"><b>' . $GLOBALS['strNotOK']
|
||||
. '</b></font> [ <a href="Documentation.html#%s" target="documentation">'
|
||||
$messages['error'] = '<font color="red"><strong>' . $GLOBALS['strNotOK']
|
||||
. '</strong></font> [ <a href="Documentation.html#%s" target="documentation">'
|
||||
. $GLOBALS['strDocu'] . '</a> ]';
|
||||
|
||||
$messages['ok'] = '<font color="green"><b>' . $GLOBALS['strOK'] . '</b></font>';
|
||||
$messages['ok'] = '<font color="green"><strong>' . $GLOBALS['strOK'] . '</strong></font>';
|
||||
$messages['enabled'] = '<font color="green">' . $GLOBALS['strEnabled'] . '</font>';
|
||||
$messages['disabled'] = '<font color="red">' . $GLOBALS['strDisabled'] . '</font>';
|
||||
|
||||
|
@@ -81,7 +81,7 @@ function PMA_select_server($not_only_options, $ommit_fieldset)
|
||||
if ($list) {
|
||||
echo '<li>';
|
||||
if ($selected && !$ommit_fieldset) {
|
||||
echo '<b>' . htmlspecialchars($label) . '</b>';
|
||||
echo '<strong>' . htmlspecialchars($label) . '</strong>';
|
||||
} else {
|
||||
|
||||
echo '<a class="item" href="index.php'
|
||||
|
@@ -665,7 +665,7 @@ if (! defined('PMA_MINIMUM_COMMON')) {
|
||||
$d_next_upper = '';
|
||||
}
|
||||
|
||||
//DEBUG echo "[prev: <b>".$d_prev."</b> ".$t_prev."][cur: <b>".$d_cur."</b> ".$t_cur."][next: <b>".$d_next."</b> ".$t_next."]<br />";
|
||||
//DEBUG echo "[prev: <strong>".$d_prev."</strong> ".$t_prev."][cur: <strong>".$d_cur."</strong> ".$t_cur."][next: <strong>".$d_next."</strong> ".$t_next."]<br />";
|
||||
|
||||
if ($t_cur == 'alpha') {
|
||||
$t_suffix = '_identifier';
|
||||
@@ -1002,7 +1002,7 @@ if (! defined('PMA_MINIMUM_COMMON')) {
|
||||
// loop #1 for each token: select_expr, table_ref for SELECT
|
||||
|
||||
for ($i = 0; $i < $size; $i++) {
|
||||
//DEBUG echo "Loop1 <b>" . $arr[$i]['data'] . "</b> (" . $arr[$i]['type'] . ")<br />";
|
||||
//DEBUG echo "Loop1 <strong>" . $arr[$i]['data'] . "</strong> (" . $arr[$i]['type'] . ")<br />";
|
||||
|
||||
// High speed seek for locating the end of the current query
|
||||
if ($seek_queryend == TRUE) {
|
||||
@@ -1451,7 +1451,7 @@ if (! defined('PMA_MINIMUM_COMMON')) {
|
||||
$unsorted_query = $arr['raw']; // in case there is no ORDER BY
|
||||
|
||||
for ($i = 0; $i < $size; $i++) {
|
||||
//DEBUG echo "Loop2 <b>" . $arr[$i]['data'] . "</b> (" . $arr[$i]['type'] . ")<br />";
|
||||
//DEBUG echo "Loop2 <strong>" . $arr[$i]['data'] . "</strong> (" . $arr[$i]['type'] . ")<br />";
|
||||
|
||||
// need_confirm
|
||||
//
|
||||
@@ -1739,7 +1739,7 @@ if (! defined('PMA_MINIMUM_COMMON')) {
|
||||
$seen_default = FALSE;
|
||||
|
||||
for ($i = 0; $i < $size; $i++) {
|
||||
// DEBUG echo "Loop 3 <b>" . $arr[$i]['data'] . "</b> " . $arr[$i]['type'] . "<br />";
|
||||
// DEBUG echo "Loop 3 <strong>" . $arr[$i]['data'] . "</strong> " . $arr[$i]['type'] . "<br />";
|
||||
|
||||
if ($arr[$i]['type'] == 'alpha_reservedWord') {
|
||||
$upper_data = strtoupper($arr[$i]['data']);
|
||||
@@ -2123,7 +2123,7 @@ if (! defined('PMA_MINIMUM_COMMON')) {
|
||||
|
||||
$in_priv_list = FALSE;
|
||||
for ($i = $start_token; $i < $arraysize; $i++) {
|
||||
// DEBUG echo "Loop format <b>" . $arr[$i]['data'] . "</b> " . $arr[$i]['type'] . "<br />";
|
||||
// DEBUG echo "Loop format <strong>" . $arr[$i]['data'] . "</strong> " . $arr[$i]['type'] . "<br />";
|
||||
$before = '';
|
||||
$after = '';
|
||||
$indent = 0;
|
||||
|
@@ -32,7 +32,7 @@ if ($triggers) {
|
||||
$drop_and_create = $trigger['drop'] . $delimiter . "\n" . $trigger['create'] . "\n";
|
||||
|
||||
echo sprintf('<tr class="%s">
|
||||
<td><b>%s</b></td>
|
||||
<td><strong>%s</strong></td>
|
||||
<td>%s</td>
|
||||
<td>%s</td>
|
||||
<td>%s</td>
|
||||
|
4
main.php
4
main.php
@@ -173,10 +173,10 @@ if ($server > 0) {
|
||||
|
||||
echo ' <li id="li_select_mysql_charset">';
|
||||
echo ' ' . $strMySQLCharset . ': '
|
||||
. ' <strong xml:lang="en" dir="ltr">'
|
||||
. ' <span xml:lang="en" dir="ltr">'
|
||||
. ' ' . $mysql_charsets_descriptions[$mysql_charset_map[strtolower($charset)]] . "\n"
|
||||
. ' (' . $mysql_charset_map[strtolower($charset)] . ')' . "\n"
|
||||
. ' </strong>' . "\n"
|
||||
. ' </span>' . "\n"
|
||||
. ' </li>' . "\n";
|
||||
echo ' </ul>';
|
||||
echo ' </div>';
|
||||
|
@@ -524,7 +524,7 @@ function resetDrag() {
|
||||
<?php echo PMA_generate_common_hidden_inputs($db); ?>
|
||||
<input type="hidden" name="pdf_page_number" value="<?php echo $chpage; ?>" />
|
||||
|
||||
<?php echo '<br /><b>' . $strDisplayPDF . '</b>'; ?>: <br />
|
||||
<?php echo '<br /><strong>' . $strDisplayPDF . '</strong>'; ?>: <br />
|
||||
<input type="checkbox" name="show_grid" id="show_grid_opt" /><label for="show_grid_opt"><?php echo $strShowGrid; ?></label><br />
|
||||
<input type="checkbox" name="show_color" id="show_color_opt" checked="checked" /><label for="show_color_opt"><?php echo $strShowColor; ?></label><br />
|
||||
<input type="checkbox" name="show_table_dimension" id="show_table_dim_opt" /><label for="show_table_dim_opt"><?php echo $strShowTableDimension; ?></label><br />
|
||||
|
@@ -227,7 +227,7 @@ class PMA_PDF extends TCPDF {
|
||||
|
||||
require_once './libraries/header.inc.php';
|
||||
|
||||
echo '<p><b>PDF - ' . $GLOBALS['strError'] . '</b></p>' . "\n";
|
||||
echo '<p><strong>PDF - ' . $GLOBALS['strError'] . '</strong></p>' . "\n";
|
||||
if (!empty($error_message)) {
|
||||
$error_message = htmlspecialchars($error_message);
|
||||
}
|
||||
|
@@ -311,12 +311,12 @@ for ($i = 0; $i < count($GLOBALS['PMD']["TABLE_NAME"]); $i++) {
|
||||
<table width="168" border="0" align="center" cellpadding="2" cellspacing="0">
|
||||
<thead>
|
||||
<tr>
|
||||
<td colspan="2" align="center" nowrap="nowrap"><b><?php echo $strCreateRelation; ?></b></td>
|
||||
<td colspan="2" align="center" nowrap="nowrap"><strong><?php echo $strCreateRelation; ?></strong></td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="foreign_relation">
|
||||
<tr>
|
||||
<td colspan="2" align="center" nowrap="nowrap"><b>FOREIGN KEY</b></td>
|
||||
<td colspan="2" align="center" nowrap="nowrap"><strong>FOREIGN KEY</strong></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="58" nowrap="nowrap">on delete</td>
|
||||
@@ -377,7 +377,7 @@ for ($i = 0; $i < count($GLOBALS['PMD']["TABLE_NAME"]); $i++) {
|
||||
<td class="input_tab">
|
||||
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td colspan="3" align="center" nowrap="nowrap"><b><?php echo $strDeleteRelation; ?></b></td>
|
||||
<td colspan="3" align="center" nowrap="nowrap"><strong><?php echo $strDeleteRelation; ?></strong></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="center" nowrap="nowrap">
|
||||
|
@@ -964,7 +964,7 @@ if (!isset($after_insert)) {
|
||||
?>
|
||||
</td>
|
||||
<td valign="middle">
|
||||
<b><?php echo $strAndThen; ?></b>
|
||||
<strong><?php echo $strAndThen; ?></strong>
|
||||
</td>
|
||||
<td valign="middle" nowrap="nowrap">
|
||||
<select name="after_insert">
|
||||
|
@@ -270,7 +270,7 @@ unset($columns);
|
||||
<?php
|
||||
} // end if
|
||||
?>
|
||||
<b>.</b>
|
||||
<strong>.</strong>
|
||||
<input type="text" size="20" name="new_name" onfocus="this.select()"
|
||||
value="<?php echo htmlspecialchars($GLOBALS['table']); ?>" /><br />
|
||||
<?php
|
||||
@@ -474,7 +474,7 @@ if (isset($possible_row_formats[$tbl_type])) {
|
||||
<?php
|
||||
} // end if
|
||||
?>
|
||||
<b>.</b>
|
||||
<strong>.</strong>
|
||||
<input type="text" size="20" name="new_name" onfocus="this.select()" /><br />
|
||||
<?php
|
||||
$choices = array(
|
||||
|
@@ -71,7 +71,7 @@ if ($multi_tables) {
|
||||
$tbl_list .= (empty($tbl_list) ? '' : ', ')
|
||||
. PMA_backquote($table);
|
||||
}
|
||||
echo '<b>'. $strShowTables . ': ' . $tbl_list . '</b>' . "\n";
|
||||
echo '<strong>'. $strShowTables . ': ' . $tbl_list . '</strong>' . "\n";
|
||||
echo '<hr />' . "\n";
|
||||
} // end if
|
||||
|
||||
|
@@ -375,7 +375,7 @@ if ($col_rs && PMA_DBI_num_rows($col_rs) > 0) {
|
||||
?>
|
||||
<tr class="<?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
|
||||
<td align="center">
|
||||
<b><?php echo $save_row[$i]['Field']; ?></b></td>
|
||||
<strong><?php echo $save_row[$i]['Field']; ?></strong></td>
|
||||
<?php
|
||||
if ($cfgRelation['relwork']) {
|
||||
?>
|
||||
|
@@ -110,7 +110,7 @@ if (isset($_REQUEST['nopass'])) {
|
||||
PMA_showMessage($strUpdateProfileMessage, $sql_query, 'success');
|
||||
?>
|
||||
<a href="index.php<?php echo PMA_generate_common_url($_url_params); ?>" target="_parent">
|
||||
<b><?php echo $strBack; ?></b></a>
|
||||
<strong><?php echo $strBack; ?></strong></a>
|
||||
<?php
|
||||
require_once './libraries/footer.inc.php';
|
||||
} // end if
|
||||
|
Reference in New Issue
Block a user