1<?php
2/**
3 * Coppermine Photo Gallery
4 *
5 * v1.0 originally written by Gregory Demar
6 *
7 * @copyright  Copyright (c) 2003-2019 Coppermine Dev Team
8 * @license    GNU General Public License version 3 or later; see LICENSE
9 *
10 * plugins/upload_h5a/help.php
11 * @since  1.6.08
12 */
13
14$styles = '../../themes/'.$_GET['t'].'/style.css';
15$hpath = 'help/'.$_GET['g'].'/';
16$lang = $_GET['l'];
17$hfile = file_exists($hpath.$lang.'.html') ? $lang.'.html' : 'english.html';
18?>
19<!DOCTYPE html>
20<html lang="en">
21<head>
22<title></title>
23<link rel="stylesheet" type="text/css" href="<?php echo $styles; ?>">
24</head>
25<body class="nobgimage">
26<?php readfile($hpath.$hfile); ?>
27</body>
28</html>