瀏覽代碼

[Bugfix] Error finding DB

Foppe Hemminga 5 年之前
父節點
當前提交
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>");