1<?php
2
3/**
4 * Page with a quick info how to generate backtrace with compiler on Windows.
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_generating_backtrace_win32.php');
15