Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo Michael <me@mynetx.net>2012-03-17 02:04:12 +0400
committerJo Michael <me@mynetx.net>2012-03-17 02:04:12 +0400
commit3b56f6a53b1cb74319fe58308907371ea93f725d (patch)
treecfa258378f13db3e794c1fb6ecb6f7c3e6409136 /server_binlog.php
parentaf0e6c71e72cc3bbcd9c8d35c64836e4e3b07b1e (diff)
Leading ./ paths for links and favicons can be omitted, part 1
Diffstat (limited to 'server_binlog.php')
-rw-r--r--server_binlog.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/server_binlog.php b/server_binlog.php
index 89a424a835..7d902a8fff 100644
--- a/server_binlog.php
+++ b/server_binlog.php
@@ -130,7 +130,7 @@ if ($pos > 0) {
$this_url_params['pos'] = $pos - $GLOBALS['cfg']['MaxRows'];
}
- echo '<a href="./server_binlog.php' . PMA_generate_common_url($this_url_params) . '"';
+ echo '<a href="server_binlog.php' . PMA_generate_common_url($this_url_params) . '"';
if ($GLOBALS['cfg']['NavigationBarIconic']) {
echo ' title="' . _pgettext('Previous page', 'Previous') . '">';
} else {
@@ -146,7 +146,7 @@ if ($pos > 0) {
if ($dontlimitchars) {
unset($this_url_params['dontlimitchars']);
?>
- <a href="./server_binlog.php<?php echo PMA_generate_common_url($this_url_params); ?>"
+ <a href="server_binlog.php<?php echo PMA_generate_common_url($this_url_params); ?>"
title="<?php __('Truncate Shown Queries'); ?>">
<img src="<?php echo $pmaThemeImage; ?>s_partialtext.png"
alt="<?php echo __('Truncate Shown Queries'); ?>" /></a>
@@ -154,7 +154,7 @@ if ($dontlimitchars) {
} else {
$this_url_params['dontlimitchars'] = 1;
?>
- <a href="./server_binlog.php<?php echo PMA_generate_common_url($this_url_params); ?>"
+ <a href="server_binlog.php<?php echo PMA_generate_common_url($this_url_params); ?>"
title="<?php __('Show Full Queries'); ?>">
<img src="<?php echo $pmaThemeImage; ?>s_fulltext.png"
alt="<?php echo __('Show Full Queries'); ?>" /></a>
@@ -165,7 +165,7 @@ if ($dontlimitchars) {
if ($num_rows >= $GLOBALS['cfg']['MaxRows']) {
$this_url_params = $url_params;
$this_url_params['pos'] = $pos + $GLOBALS['cfg']['MaxRows'];
- echo ' - <a href="./server_binlog.php' . PMA_generate_common_url($this_url_params) . '"';
+ echo ' - <a href="server_binlog.php' . PMA_generate_common_url($this_url_params) . '"';
if ($GLOBALS['cfg']['NavigationBarIconic']) {
echo ' title="' . _pgettext('Next page', 'Next') . '">';
} else {