Foppe Hemminga 5 лет назад
Родитель
Сommit
ef10c4c5aa
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      snippets.php

+ 2 - 2
snippets.php

@@ -4,7 +4,7 @@
 
 $pdo = null;
 try {
-	$pdo = new PDO("sqlite:" . './slork.sqlite');
+	$pdo = new PDO("sqlite:" . "${db_path}/slork.sqlite");
 } catch (PDOException $e) {
 	// handle the exception here
 }
@@ -83,7 +83,7 @@ HTML;
 		--AND player != ?
 SQL;
 	$stmt = $pdo->prepare($query);
-	$stmt->execute([$maintainer[0]]);
+	$stmt->execute( [$maintainer[0]] );
 	$rows = $stmt->fetchAll();
 	/*
 	print("<pre>");