Overview
Comment:Correctif : limite de nombre de résultats non respectée sur les recherches enregistrées
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | stable
Files: files | file ages | folders
SHA1: 3743f3d549e6dcd85afe6729f1fc5dcc015f0c82
User & Date: bohwaz on 2019-09-16 23:24:26
Other Links: manifest | tags
Context
2019-09-16
23:36
Correctif : ne pas essayer d'envoyer un message aux membres qui n'ont pas d'adresse email check-in: 8b5c452cad user: bohwaz tags: trunk, stable
23:24
Correctif : limite de nombre de résultats non respectée sur les recherches enregistrées check-in: 3743f3d549 user: bohwaz tags: trunk, stable
2019-08-23
14:59
Méthode inutilisée check-in: 66f10eafff user: bohwaz tags: trunk, stable
Changes

Modified src/www/admin/membres/recherche.php from [d259486866] to [ed8d36c24a].

54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
    {
        throw new UserException('Recherche inconnue ou invalide');
    }

    $query = $r->query;
    $order = $r->order;
    $desc = $r->desc;
    $limit = $r->limit;

    $tpl->assign('recherche', $r);
}

if (f('q') !== null)
{
    $query = json_decode(f('q'), true);







|







54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
    {
        throw new UserException('Recherche inconnue ou invalide');
    }

    $query = $r->query;
    $order = $r->order;
    $desc = $r->desc;
    $limit = (int) f('limit') ?: $r->limit;

    $tpl->assign('recherche', $r);
}

if (f('q') !== null)
{
    $query = json_decode(f('q'), true);