| Server IP : 195.130.67.5 / Your IP : 216.73.216.231 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/icd/jeventsComp/includes/ |
Upload File : |
<?php
/**
* Legacy Mode compatibility
* @version $Id: database.php 10381 2008-06-01 03:35:53Z pasamio $
* @package Joomla.Legacy
* @deprecated As of version 1.5
*/
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
require_once( dirname(__FILE__) .'/../libraries/loader.php' );
jimport( 'joomla.database.database' );
jimport( 'joomla.database.database.mysql' );
/**
* Legacy class, derive from JDatabase instead.
*
* @package Joomla
* @deprecated As of version 1.5
*/
class database extends JDatabase {
function __construct ($host='localhost', $user, $pass, $db='', $table_prefix='', $offline = true) {
parent::__construct( 'mysql', $host, $user, $pass, $db, $table_prefix );
}
}