Revize 12de28ea
Přidáno uživatelem Tomáš Pašek před téměř 4 roky(ů)
application/controller/TableController.php | ||
---|---|---|
53 | 53 |
$array['lemma'] = $_POST['lemma']."%"; |
54 | 54 |
$whereQuery .= " upper(l.lemma) LIKE upper(:lemma) AND"; |
55 | 55 |
} |
56 |
if (array_key_exists("description2", $_POST) && $_POST['description2'] != "") { |
|
57 |
$array['description2'] = "%".$_POST['description2']."%"; |
|
58 |
$whereQuery .= " upper(description2) LIKE upper(:description2) AND"; |
|
59 |
} |
|
56 | 60 |
if (array_key_exists("word", $_POST) && $_POST['word'] != "") { |
57 | 61 |
$array['word'] = $_POST['word']; |
58 | 62 |
$whereQuery .= " upper(w.word) = upper(:word) AND"; |
Také k dispozici: Unified diff
Feature #8638 Implementovat filtr pro Poznámka 2