Issues (42)

shifts.php (1 issue)

Labels
Severity
1
<?php
2
require_once('class.VolunteerPage.php');
3
$page = new VolunteerPage('Burning Flipside - Flipside Volunteer System');
4
5
$page->addWellKnownJS(JS_BOOTBOX);
6
$page->addWellKnownJS(JS_JQUERY_UI);
0 ignored issues
show
The constant JS_JQUERY_UI was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
7
8
$page->body .= '
9
<div id="content">
10
  <table id="shifts">
11
  </table>
12
</div>';
13
14
$page->printPage();
15