summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchriskl2005-11-19 09:17:23 +0000
committerchriskl2005-11-19 09:17:23 +0000
commit024acb0ab8ee034a3a333ea48c5b71dffddc54a8 (patch)
tree052a5fe9a8c996f8bdd28f71fa517d64417a8408
parent270fc8db83383df4bfc24a5f374c13d5ea769e23 (diff)
Backport: fix logout link
-rw-r--r--HISTORY2
-rw-r--r--classes/Misc.php4
2 files changed, 4 insertions, 2 deletions
diff --git a/HISTORY b/HISTORY
index 709f894e..f52b68a9 100644
--- a/HISTORY
+++ b/HISTORY
@@ -4,8 +4,10 @@ phpPgAdmin History
Version 4.0.1
-------------
+Bugs
* Fix issue with includes where '.' is not in the include_path
* Don't prompt to share credentials when only one server is present
+* Fix logout link
Version 4.0
-----------
diff --git a/classes/Misc.php b/classes/Misc.php
index 8462f3ff..b094a466 100644
--- a/classes/Misc.php
+++ b/classes/Misc.php
@@ -2,7 +2,7 @@
/**
* Class to hold various commonly used functions
*
- * $Id: Misc.php,v 1.113.2.2 2005/11/16 08:02:28 chriskl Exp $
+ * $Id: Misc.php,v 1.113.2.3 2005/11/19 09:17:23 chriskl Exp $
*/
class Misc {
@@ -896,7 +896,7 @@
echo "<a class=\"toplink\" href=\"{$url}find\" target=\"sqledit\" onclick=\"window.open('{$url}find','{$window_id}','toolbar=no,width=600,height=400,resizable=yes,scrollbars=no').focus(); return false;\">{$lang['strfind']}</a> | ";
- echo "<a class=\"toplink\" href=\"servers.php?action=logouti&amp;logoutServer=".htmlspecialchars($server_info['host']).":".htmlspecialchars($server_info['port'])."\">{$lang['strlogout']}</a>";
+ echo "<a class=\"toplink\" href=\"servers.php?action=logout&amp;logoutServer=".htmlspecialchars($server_info['host']).":".htmlspecialchars($server_info['port'])."\">{$lang['strlogout']}</a>";
echo "</td>";
}