"; $url = rawurlencode($remove); $html .= sprintf(gettext ("Click %shere%s to remove the page now."), "", ""); $html .= "\n

"; $html .= gettext ("Otherwise press the \"Back\" button of your browser."); } else { $html = gettext ("Function not yet implemented."); } GeneratePage('MESSAGE', $html, gettext ("Remove page"), 0); ExitWiki(''); } elseif (isset($removeok)) { if (get_magic_quotes_gpc()) $removeok = stripslashes($removeok); RemovePage($dbi, $removeok); $html = sprintf(gettext ("Removed page '%s' succesfully."), htmlspecialchars($removeok)); GeneratePage('MESSAGE', $html, gettext ("Remove page"), 0); ExitWiki(''); } include('index.php'); ?>