From bcc88b4302fc2ecc1ebd88c025639cb7385fac2c Mon Sep 17 00:00:00 2001 From: nbm Date: Tue, 6 Dec 2005 11:56:13 +0000 Subject: [PATCH] This file is unused. --- lib/dms.inc | 57 --------------------------------------------------------- 1 file changed, 0 insertions(+), 57 deletions(-) delete mode 100644 lib/dms.inc diff --git a/lib/dms.inc b/lib/dms.inc deleted file mode 100644 index 80e3522..0000000 --- a/lib/dms.inc +++ /dev/null @@ -1,57 +0,0 @@ -, Jam Warehouse (Pty) Ltd, South Africa - * @package lib - */ - -/** - * Initialises the web application by making current - * request parameters global and loading the default language - */ - -// make request parameters global -if (substr(phpversion(),0,5) >= "4.1.0") { - // if supported by the installed version of PHP - import_request_variables('pgc'); -} else { - // do it manually - if (!EMPTY($_POST)) { - extract($_POST); - } else { - extract($HTTP_POST_VARS); - } - - if (!EMPTY($_GET)) { - extract($_GET); - } else { - extract($HTTP_GET_VARS); - } - - if (!EMPTY($_FILE)) { - extract($_FILE); - } else { - extract($HTTP_POST_FILES); - } -} -?> -- libgit2 0.21.4