Multiple static fix

This commit is contained in:
JonatanRek 2020-04-21 20:11:40 +02:00
parent 386e7be130
commit a6453cf393
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class RecordManager{
} }
} }
public static static function setExecuted($recordId) { public static function setExecuted($recordId) {
try { try {
Db::edit ('records', ['execuded' => 1], 'WHERE record_id = ?', array($recordId)); Db::edit ('records', ['execuded' => 1], 'WHERE record_id = ?', array($recordId));
} catch(PDOException $error) { } catch(PDOException $error) {