Overview
Comment:Mettre l'ordre par défaut à champ_identite au lieu du premier champ de la table membres
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: c5cd13a81f4e56ec410ffcb61befded77afb4e85
User & Date: bohwaz on 2016-11-18 02:24:49
Other Links: manifest | tags
Context
2016-11-18
02:29
Vérifier que le champ existe avant de l'utiliser comme critère de tri check-in: a812eb71bf user: bohwaz tags: trunk
02:24
Mettre l'ordre par défaut à champ_identite au lieu du premier champ de la table membres check-in: c5cd13a81f user: bohwaz tags: trunk
2016-11-15
23:21
Ajout chemins à vérifier pour droit à l'écriture check-in: 3a40e8208d user: bohwaz tags: trunk
Changes

Modified src/www/admin/membres/index.php from [e22101fc6f] to [b26172e579].

38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
	}

	if (!$cat_id)
	{
	    $cat_id = array_diff(array_keys($membres_cats), array_keys($membres_cats_cachees));
	}

	$order = $champs->getFirst();
	$desc = false;

	if (Utils::get('o'))
	    $order = Utils::get('o');

	if (isset($_GET['d']))
	    $desc = true;







|







38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
	}

	if (!$cat_id)
	{
	    $cat_id = array_diff(array_keys($membres_cats), array_keys($membres_cats_cachees));
	}

	$order = $config->get('champ_identite');
	$desc = false;

	if (Utils::get('o'))
	    $order = Utils::get('o');

	if (isset($_GET['d']))
	    $desc = true;