Revize 7f347c4a
Přidáno uživatelem Tomáš Pašek před asi 4 roky(ů)
application/model/DB.php | ||
---|---|---|
45 | 45 |
if (array_key_exists("tag", $params)) { |
46 | 46 |
$this->stmt->bindParam(':tag',$params['tag'], PDO::PARAM_STR); |
47 | 47 |
} |
48 |
if (array_key_exists("tag", $params)) { |
|
49 |
$this->stmt->bindParam(':tag',$params['tag'], PDO::PARAM_STR); |
|
50 |
} |
|
51 |
if (array_key_exists("finished", $params)) { |
|
52 |
$this->stmt->bindParam(':finished',$params['finished']); |
|
53 |
} |
|
48 | 54 |
if (array_key_exists("manuscript", $params)) { |
49 | 55 |
for ($x = 0; $x < count($params["manuscript"]); $x += 1) { |
50 | 56 |
$this->stmt->bindParam(':manuscript'.$x,$params["manuscript"][$x], PDO::PARAM_INT); |
Také k dispozici: Unified diff
Feature #8345 Implementce filterů dat - Server
stránkování na serveru