Skip to content

Commit

Permalink
Fix copy/paste errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ellite committed Feb 22, 2024
1 parent 06f0e26 commit d26e4a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion endpoints/cronjobs/sendnotifications.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
use PHPMailer\PHPMailer\Exception;

require_once 'conf.php';
require_once $webPath . 'includes/connect_endpoint.php';
require_once $webPath . 'includes/connect_endpoint_crontabs.php';

$query = "SELECT * FROM notifications WHERE id = 1";
$result = $db->query($query);
Expand Down
2 changes: 1 addition & 1 deletion migrations/000009.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
// This migration adds an "email" column to the members table.
// It allows the user to disable payment methods without deleting them.
// It allows the household member to receive notifications when their subscriptions are about to expire.

/** @noinspection PhpUndefinedVariableInspection */
$columnQuery = $db->query("SELECT * FROM pragma_table_info('household') where name='email'");
Expand Down

0 comments on commit d26e4a0

Please sign in to comment.