diff --git a/server_binlog.php b/server_binlog.php index 20f9070a66..e2ccdab50a 100644 --- a/server_binlog.php +++ b/server_binlog.php @@ -7,7 +7,7 @@ */ /** - * + * requirements */ require_once 'libraries/common.inc.php'; @@ -16,6 +16,7 @@ require_once 'libraries/common.inc.php'; */ require_once 'libraries/server_common.inc.php'; +$response = PMA_Response::getInstance(); $url_params = array(); /** @@ -69,30 +70,30 @@ if (empty($_REQUEST['dontlimitchars'])) { /** * Displays the sub-page heading */ -echo '
';
@@ -135,14 +136,14 @@ if ($pos > 0) {
$this_url_params['pos'] = $pos - $GLOBALS['cfg']['MaxRows'];
}
- echo '';
+ $html .= ' title="' . _pgettext('Previous page', 'Previous') . '">';
} else {
- echo '>' . _pgettext('Previous page', 'Previous');
+ $html .= '>' . _pgettext('Previous page', 'Previous');
} // end if... else...
- echo ' < - ';
+ $html .= ' < - ';
}
$this_url_params = $url_params;
@@ -158,7 +159,7 @@ if ($dontlimitchars) {
$tempTitle = __('Show Full Queries');
$tempImgMode = 'full';
}
-echo ''
. ' ';
@@ -168,17 +169,17 @@ echo '';
+ $html .= ' title="' . _pgettext('Next page', 'Next') . '">';
} else {
- echo '>' . _pgettext('Next page', 'Next');
+ $html .= '>' . _pgettext('Next page', 'Next');
} // end if... else...
- echo ' > ';
+ $html .= ' > ';
}
-echo ' | '
+$html .= ''
. '|||||
| ' . __('Log name') . ' | ' @@ -201,7 +202,7 @@ while ($value = PMA_DBI_fetch_assoc($result)) { ) . '...'; } - echo '|||||
|---|---|---|---|---|---|
| ' . $value['Log_name'] . ' | ' . '' . $value['Pos'] . ' | ' . '' . $value['Event_type'] . ' | ' @@ -215,5 +216,7 @@ while ($value = PMA_DBI_fetch_assoc($result)) { $odd_row = !$odd_row; } -echo '' +$html .= '' . '|||