mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-13 00:17:02 +02:00
gui fix
This commit is contained in:
@ -42,7 +42,10 @@ class MySQL {
|
||||
$s = $this->link->prepare($sql);
|
||||
if(!$s) { return $query; }
|
||||
|
||||
$s->execute($arr);
|
||||
try {
|
||||
$s->execute($arr);
|
||||
}
|
||||
catch(PDOException $exception) { }
|
||||
|
||||
$this->affected = $s->rowCount();
|
||||
|
||||
|
Reference in New Issue
Block a user