1<?php
2/**
3 * CommonPlugin for phplist.
4 *
5 * This file is a part of CommonPlugin.
6 *
7 * @category  phplist
8 *
9 * @author    Duncan Cameron
10 * @copyright 2011-2018 Duncan Cameron
11 * @license   http://www.gnu.org/licenses/gpl.html GNU General Public License, Version 3
12 */
13
14namespace phpList\plugin\Common;
15
16/**
17 *  This page serves plugin images.
18 */
19$server = new FileServer();
20ob_end_clean();
21$server->serveFile($plugins['CommonPlugin']->coderoot . 'images/' . basename($_GET['image']));
22
23exit;
24