Overview
Comment:Fix change saved search
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev | 1.0.0-rc1
Files: files | file ages | folders
SHA1: 52cd841c7f9181573625519aaf5634ef23d8a33c
User & Date: bohwaz on 2020-11-26 19:31:46
Other Links: branch diff | manifest | tags
Context
2020-11-26
20:31
Fix issue with empty amount check-in: d2fcf382d7 user: bohwaz tags: dev, 1.0.0-rc1
19:31
Fix change saved search check-in: 52cd841c7f user: bohwaz tags: dev, 1.0.0-rc1
18:55
Use simple form for simple transactions check-in: 475f66a35e user: bohwaz tags: dev, 1.0.0-rc1
Changes

Modified src/VERSION from [f305a995ef] to [04b53927c1].

1
1.0.0-beta8
|
1
1.0.0-rc1

Modified src/www/admin/common/search.php from [63b095df7f] to [145020cce4].

26
27
28
29
30
31
32
33
34
35
36
37
38
39
40

// Recherche simple
if ($text_query !== '' && $target === 'membres')
{
	$query = $recherche->buildSimpleMemberQuery($text_query);
}
// Recherche existante
elseif ($id)
{
	$search = $recherche->get($id);

	if (!$search) {
		throw new UserException('Recherche inconnue ou invalide');
	}








|







26
27
28
29
30
31
32
33
34
35
36
37
38
39
40

// Recherche simple
if ($text_query !== '' && $target === 'membres')
{
	$query = $recherche->buildSimpleMemberQuery($text_query);
}
// Recherche existante
elseif ($id && !f('q'))
{
	$search = $recherche->get($id);

	if (!$search) {
		throw new UserException('Recherche inconnue ou invalide');
	}