This commit is contained in:
Václav Španinger 2020-12-09 12:28:31 +01:00
parent 181a65a99b
commit 74f6779c63
1 changed files with 9 additions and 5 deletions

View File

@ -22,11 +22,15 @@ class SettingsManager{
} }
public static function update ($name, $value) { public static function update ($name, $value) {
try { if ($this.getByName($name)){
Db::edit ('settings', ['value' => $value], 'WHERE name = ?', array($name)); $this->create($name, $value);
} catch(PDOException $error) { } else {
echo $error->getMessage(); try {
die(); Db::edit ('settings', ['value' => $value], 'WHERE name = ?', array($name));
} catch(PDOException $error) {
echo $error->getMessage();
die();
}
} }
} }
} }