From 902d93f971e53578006da2b35223d78ba655fc61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20M=C3=A9ndez?= <45081533+FerMdez@users.noreply.github.com> Date: Mon, 12 Jul 2021 09:30:04 +0200 Subject: [PATCH] Delete config-FER_SURFACE.php --- assets/php/config-FER_SURFACE.php | 61 ------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 assets/php/config-FER_SURFACE.php diff --git a/assets/php/config-FER_SURFACE.php b/assets/php/config-FER_SURFACE.php deleted file mode 100644 index cf47986..0000000 --- a/assets/php/config-FER_SURFACE.php +++ /dev/null @@ -1,61 +0,0 @@ -get_prefix(); - - /** - * Initialize the application: - */ - include_once($prefix.'assets/php/dao.php'); - require_once('aplication.php'); - $app = Aplicacion::getSingleton(); - $app->init(array('host'=>BD_HOST, 'bd'=>BD_NAME, 'user'=>BD_USER, 'pass'=>BD_PASS)); - - /** - * @see http://php.net/manual/en/function.register-shutdown-function.php - * @see http://php.net/manual/en/language.types.callable.php - */ - register_shutdown_function(array($app, 'shutdown')); - - //Depuración (BORRAR): - ini_set('display_errors', 1); - ini_set('display_startup_errors', 1); - error_reporting(E_ALL); -?>