Overview
Comment:Correction oubli
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 82e23632978f3e1d548f2bf3d9f98eb40283fd7a
User & Date: bohwaz on 2013-01-29 19:00:38
Other Links: manifest | tags
Context
2013-01-29
19:01
Ajout option list_row pour gérer le tableau de liste des membres check-in: 4dfcbdc0cb user: bohwaz tags: trunk
19:00
Correction oubli check-in: 82e2363297 user: bohwaz tags: trunk
19:00
Gestion des select check-in: a2fdda4170 user: bohwaz tags: trunk
Changes

Modified www/admin/membres/export.php from [2bafc715db] to [e2a1f35a78].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
namespace Garradin;

require_once __DIR__ . '/../_inc.php';

if ($user['droits']['membres'] < Membres::DROIT_ADMIN)
{
    throw new UserException("Vous n'avez pas le droit d'accéder à cette page.");
}

header('Content-type: application/csv');
header('Content-Disposition: attachment; filename="Export comptabilité - ' . $config->get('nom_asso') . ' - ' . date('Y-m-d') . '.csv"');
$membres->toCSV();
exit;

?>











|




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
namespace Garradin;

require_once __DIR__ . '/../_inc.php';

if ($user['droits']['membres'] < Membres::DROIT_ADMIN)
{
    throw new UserException("Vous n'avez pas le droit d'accéder à cette page.");
}

header('Content-type: application/csv');
header('Content-Disposition: attachment; filename="Export membres - ' . $config->get('nom_asso') . ' - ' . date('Y-m-d') . '.csv"');
$membres->toCSV();
exit;

?>