Skip to content

Commit dc91732

Browse files
authored
Update suggestions.php
1 parent 495722c commit dc91732

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

suggestions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22
$config = require "config.php";
3-
require "engines/brave/suggestions.php";
3+
require "engines/google/suggestions.php";
44

55
header('Content-Type: application/x-suggestions+json');
66
header('Content-Disposition: attachment; filename="suggestions.json"');
77

88
$q = isset($_REQUEST['q']) ? htmlspecialchars(trim($_REQUEST["q"])) : '';
99
$result = get_suggestions_results($q);
1010
echo print_suggestions_results($result, $q);
11-
?>
11+
?>

0 commit comments

Comments
 (0)