Look: Uniformize look

This commit is contained in:
Laurent Destailleur 2009-07-19 23:46:09 +00:00
parent 954d08d82d
commit d4eefc0823

View File

@ -1,7 +1,7 @@
<?php
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2003 Jean-Louis Bergamo <jlb@j1b.org>
* Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -19,11 +19,11 @@
*/
/**
\file htdocs/adherents/type.php
\ingroup adherent
\brief Page de configuration des types d'adhérents
\version $Id$
*/
* \file htdocs/adherents/type.php
* \ingroup adherent
* \brief Page de configuration des types d'adh<EFBFBD>rents
* \version $Id$
*/
require("./pre.inc.php");
require_once(DOL_DOCUMENT_ROOT."/adherents/adherent.class.php");
@ -106,6 +106,9 @@ if ($user->rights->adherent->configurer && $_GET["action"] == 'commentaire')
}
/*
* View
*/
llxHeader();
@ -113,15 +116,14 @@ $form=new Form($db);
/* ************************************************************************** */
/* */
/* Liste des types d'adhérents */
/* Liste des types d'adh<EFBFBD>rents */
/* */
/* ************************************************************************** */
if (! $rowid && $_GET["action"] != 'create' && $_GET["action"] != 'edit')
{
print_titre($langs->trans("MembersTypeSetup"));
print '<br>';
print_fiche_titre($langs->trans("MembersTypeSetup"));
$sql = "SELECT d.rowid, d.libelle, d.cotisation, d.vote";
@ -184,15 +186,14 @@ if (! $rowid && $_GET["action"] != 'create' && $_GET["action"] != 'edit')
/* ************************************************************************** */
/* */
/* Création d'un type adherent */
/* Cr<EFBFBD>ation d'un type adherent */
/* */
/* ************************************************************************** */
if ($_GET["action"] == 'create')
{
$htmls = new Form($db);
print_titre($langs->trans("NewMemberType"));
print '<br>';
print_fiche_titre($langs->trans("NewMemberType"));
if ($mesg) print '<div class="error">'.$mesg.'</div>';