From: chriskl Date: Fri, 11 Mar 2005 04:41:05 +0000 (+0000) Subject: backport: fix browser for rtl languages X-Git-Tag: REL_3-5-3~4 X-Git-Url: http://git.postgresql.org/gitweb/static/%7B%7Bpgdulink%28?a=commitdiff_plain;h=6327705b421ecaa7daaa7c0984ade4cc35ffc262;p=phppgadmin.git backport: fix browser for rtl languages --- diff --git a/HISTORY b/HISTORY index 0975c8e7..533eb100 100644 --- a/HISTORY +++ b/HISTORY @@ -8,6 +8,7 @@ Bugs * Fix using schema enabled dump on non-schema enabled backend * Don't try setting no timeout when in safe mode * Reload browser after executing arbitrary SQL +* Fix browser in RTL languages * Fix inability to drop database using the drop link Version 3.5.2 diff --git a/browser.php b/browser.php index 7d1c004b..9cd7316f 100644 --- a/browser.php +++ b/browser.php @@ -5,7 +5,7 @@ * if you click on a database it shows a list of database objects in that * database. * - * $Id: browser.php,v 1.42 2004/09/02 13:53:56 jollytoad Exp $ + * $Id: browser.php,v 1.42.2.1 2005/03/11 04:41:05 chriskl Exp $ */ // Include application functions @@ -17,6 +17,7 @@ // Output header $misc->printHeader('', "\n"); $misc->printBody('browser'); + echo "
\n"; // Construct expanding tree $menu = new HTML_TreeMenu(null, array('usePersistence' => false)); @@ -315,6 +316,7 @@ $treeMenu->printMenu(); // Output footer + echo "
\n"; $misc->printFooter(); ?>