Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
248 B
PHP
Raw Permalink Normal View History

2010-07-31 21:08:35 +00:00
<?php
2018-02-20 14:57:56 +00:00
// Authorises bill viewing
if (is_numeric($vars['id']) && ($auth || bill_permitted($vars['id']))) {
2021-03-28 17:25:30 -05:00
$bill_id = $vars['id'];
2018-02-20 14:57:56 +00:00
$bill = dbFetchRow('SELECT * FROM `bills` WHERE bill_id = ?', [$bill_id]);
$auth = true;
2010-07-31 21:08:35 +00:00
}
2022-10-22 14:58:51 -05:00
global $dur;