diff --git a/htdocs/takepos/admin/about.php b/htdocs/takepos/admin/about.php
deleted file mode 100644
index 7882ee3eb08..00000000000
--- a/htdocs/takepos/admin/about.php
+++ /dev/null
@@ -1,75 +0,0 @@
-
- * Copyright (C) 2018 SuperAdmin
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see .
- */
-
-/**
- * \file takepos/admin/about.php
- * \ingroup takepos
- * \brief About page of module TakePos.
- */
-
-require '../../main.inc.php'; // Load $user and permissions
-require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
-require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
-require_once '../lib/takepos.lib.php';
-
-// Translations
-$langs->loadLangs(array("errors","admin","cashdesk"));
-
-// Access control
-if (! $user->admin) {
- accessforbidden();
-}
-
-// Parameters
-$action = GETPOST('action', 'alpha');
-$backtopage = GETPOST('backtopage', 'alpha');
-
-
-/*
- * Actions
- */
-
-// None
-
-
-/*
- * View
- */
-
-$form = new Form($db);
-
-$page_name = "TakePosAbout";
-llxHeader('', $langs->trans($page_name));
-
-// Subheader
-$linkback = ''.$langs->trans("BackToModuleList").'';
-
-print load_fiche_titre($langs->trans($page_name), $linkback, 'object_takepos@takepos');
-
-// Configuration header
-$head = takeposAdminPrepareHead();
-dol_fiche_head($head, 'about', '', 0, 'takepos@takepos');
-
-dol_include_once('/takepos/core/modules/modTakePos.class.php');
-$tmpmodule = new modTakePos($db);
-print $tmpmodule->getDescLong();
-
-// Page end
-dol_fiche_end();
-llxFooter();
-$db->close();