1<?php
2
3/**
4 * Valgring log guide page.
5 */
6
7// Application bootstrap
8require_once __DIR__.'/../include/prepend.php';
9
10// Authentication
11require_once __DIR__.'/../include/auth.php';
12
13// Output template with given template variables.
14echo $template->render('pages/bugs_getting_valgrind_log.php');
15