From 0bde6ae8754deca29f64d4f60aedbedc94ea8ca1 Mon Sep 17 00:00:00 2001 From: chriskl Date: Fri, 4 Apr 2003 03:59:36 +0000 Subject: [PATCH] Fix buggy back link for other langs --- HISTORY | 1 + database.php | 4 ++-- display.php | 4 ++-- views.php | 5 +++-- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/HISTORY b/HISTORY index dab34a29..6acf3c60 100644 --- a/HISTORY +++ b/HISTORY @@ -6,6 +6,7 @@ Version 3.0.0-dev-3 * French translation * Russion translations +* Japanese translations * Trigger definitions * ADODB upgrade diff --git a/database.php b/database.php index 909a127a..059ce284 100755 --- a/database.php +++ b/database.php @@ -3,7 +3,7 @@ /** * Manage schemas within a database * - * $Id: database.php,v 1.10 2003/03/23 03:13:57 chriskl Exp $ + * $Id: database.php,v 1.11 2003/04/04 03:59:36 chriskl Exp $ */ // Include application functions @@ -65,7 +65,7 @@ echo $misc->form; echo "\n"; - echo "\n"; + echo "\n"; echo " \n"; echo "\n"; diff --git a/display.php b/display.php index 2fbca5b6..9fa3d82b 100644 --- a/display.php +++ b/display.php @@ -9,7 +9,7 @@ * @param $return_desc The return link name * @param $page The current page * - * $Id: display.php,v 1.9 2003/03/23 03:13:57 chriskl Exp $ + * $Id: display.php,v 1.10 2003/04/04 03:59:36 chriskl Exp $ */ // Include application functions @@ -70,7 +70,7 @@ } else echo "

No data.

\n"; - echo "

", urlencode($_REQUEST['return_desc']), "

\n"; + echo "

{$_REQUEST['return_desc']}

\n"; $misc->printFooter(); ?> diff --git a/views.php b/views.php index f7162c9a..37551284 100644 --- a/views.php +++ b/views.php @@ -3,7 +3,7 @@ /** * Manage views in a database * - * $Id: views.php,v 1.7 2003/03/18 03:30:39 chriskl Exp $ + * $Id: views.php,v 1.8 2003/04/04 03:59:36 chriskl Exp $ */ // Include application functions @@ -187,7 +187,8 @@ $id = (($i % 2) == 0 ? '1' : '2'); echo "", htmlspecialchars($views->f[$data->vwFields['vwname']]), "\n"; echo "", htmlspecialchars($views->f[$data->vwFields['vwowner']]), "\n"; - echo "href}&query={$query}&count={$count}&return_url={$return_url}&return_desc={$lang['strback']}\">{$lang['strbrowse']}\n"; + echo "href}&query={$query}&count={$count}&return_url={$return_url}&return_desc=", + urlencode($lang['strback']), "\">{$lang['strbrowse']}\n"; echo "{$lang['strselect']}\n"; echo "href}&view=", urlencode($views->f[$data->vwFields['vwname']]), "\">{$lang['strproperties']}\n"; echo "href}&view=", urlencode($views->f[$data->vwFields['vwname']]), "\">{$lang['strdrop']}\n"; -- 2.39.5