From 5440bf7474fe35f9a83613b3e98da9b8922c9e4a Mon Sep 17 00:00:00 2001 From: x2003bruneau Date: Sun, 9 Jul 2006 09:03:00 +0000 Subject: [PATCH] Use new link format in form action="" git-svn-id: svn+ssh://murphy/home/svn/banana/trunk@66 9869982d-c50d-0410-be91-f2a2ec7c7c7b --- banana/banana.inc.php.in | 9 +++++++-- banana/groups.inc.php | 5 +++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/banana/banana.inc.php.in b/banana/banana.inc.php.in index eb08f9f..1ee9609 100644 --- a/banana/banana.inc.php.in +++ b/banana/banana.inc.php.in @@ -138,7 +138,10 @@ class Banana $res .= $banana->action_showArticle($group, $artid, $partid); if ($banana->post->checkcancel()) { $form = '

'._b_('Voulez-vous vraiment annuler ce message ?').'

' - . "

" + . '

' . '' . '' . '

'; @@ -319,7 +322,9 @@ class Banana $cuts = displayshortcuts(); $html = '

'._b_('Nouveau message').'

'.$cuts; - $html .= '
'; + $html .= ''; $html .= ''; $html .= ''; $html .= ''; diff --git a/banana/groups.inc.php b/banana/groups.inc.php index 9a008e2..dc2f750 100644 --- a/banana/groups.inc.php +++ b/banana/groups.inc.php @@ -125,8 +125,9 @@ class BananaGroups { $html .= '
'._b_('En-tĂȘtes').'
'._b_('Nom').''.htmlentities($this->profile['name']).'
'; if ($show_form) { - return '
' - .$html.'
'; + return '
' + . '
' + . $html . '
'; } return $html; -- 2.1.4