mirror of
https://github.com/standardebooks/web.git
synced 2025-07-18 20:36:38 -04:00
Tweak newsletter subscriber count query in donations page
This commit is contained in:
parent
40c5fdb3e3
commit
5f473f4bc2
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
<?
|
||||
require_once('Core.php');
|
||||
|
||||
$newsletterSubscriberCount = floor(Db::QueryInt('SELECT count(*) from NewsletterSubscriptions') / 100) * 100;
|
||||
$newsletterSubscriberCount = floor(Db::QueryInt('SELECT count(*) from NewsletterSubscriptions where IsConfirmed = true') / 100) * 100;
|
||||
|
||||
?><?= Template::Header(['title' => 'Donate', 'highlight' => 'donate', 'description' => 'Donate to Standard Ebooks.']) ?>
|
||||
<main>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue