Overview
Comment:Correction pour namespaces
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: c0095fd2bad6a02bd34b35dbd8c34cd3245afcdc
User & Date: bohwaz on 2012-12-23 03:34:10
Other Links: manifest | tags
Context
2012-12-23
03:37
Refonte de la recherche de membre check-in: 9959a6561e user: bohwaz tags: trunk
03:34
Correction pour namespaces check-in: c0095fd2ba user: bohwaz tags: trunk
03:15
Utilisation d'une page du wiki comme page d'accueil à la connexion check-in: 1e79f6cd3b user: bohwaz tags: trunk
Changes

Modified www/admin/membres/fiche.php from [4b68d7e288] to [bee81cec02].

54
55
56
57
58
59
60
61
62
63
64
65
66
67
68

$tpl->assign('categorie', $categorie);
$tpl->assign('membre', $membre);
$tpl->assign('verif_cotisation', Membres::checkCotisation($membre['date_cotisation'], $categorie['duree_cotisation']));

if (!empty($membre['date_cotisation']))
{
    $prochaine_cotisation = new DateTime('@'.$membre['date_cotisation']);
    $prochaine_cotisation->modify('+1 year');
    $prochaine_cotisation = $prochaine_cotisation->getTimestamp();
}
else
{
    $prochaine_cotisation = time();
}







|







54
55
56
57
58
59
60
61
62
63
64
65
66
67
68

$tpl->assign('categorie', $categorie);
$tpl->assign('membre', $membre);
$tpl->assign('verif_cotisation', Membres::checkCotisation($membre['date_cotisation'], $categorie['duree_cotisation']));

if (!empty($membre['date_cotisation']))
{
    $prochaine_cotisation = new \DateTime('@'.$membre['date_cotisation']);
    $prochaine_cotisation->modify('+1 year');
    $prochaine_cotisation = $prochaine_cotisation->getTimestamp();
}
else
{
    $prochaine_cotisation = time();
}