PUN_MOD) message($lang_common['No permission']); // The plugin to load should be supplied via GET $plugin = isset($_GET['plugin']) ? $_GET['plugin'] : ''; if (!preg_match('/^AM?P_(\w*?)\.php$/i', $plugin)) message($lang_common['Bad request']); // AP_ == Admins only, AMP_ == admins and moderators $prefix = substr($plugin, 0, strpos($plugin, '_')); if ($pun_user['g_id'] == PUN_MOD && $prefix == 'AP') message($lang_common['No permission']); // Make sure the file actually exists if (!file_exists(PUN_ROOT.'plugins/'.$plugin)) message('Il n\'y a pas de plugin nommé \''.$plugin.'\' dans le répertoire de plugin.'); // Construct REQUEST_URI if it isn't set if (!isset($_SERVER['REQUEST_URI'])) $_SERVER['REQUEST_URI'] = (isset($_SERVER['PHP_SELF']) ? $_SERVER['PHP_SELF'] : '').'?'.(isset($_SERVER['QUERY_STRING']) ? $_SERVER['QUERY_STRING'] : ''); $page_title = pun_htmlspecialchars($pun_config['o_board_title']).' / Admin / '.$plugin; require PUN_ROOT.'header.php'; // Attempt to load the plugin. We don't use @ here to supress error messages, // because if we did and a parse error occurred in the plugin, we would only // get the "blank page of death". include PUN_ROOT.'plugins/'.$plugin; if (!defined('PUN_PLUGIN_LOADED')) message('Le chargement du plugin \''.$plugin.'\' a échoué.'); // Output the clearer div ?>