summaryrefslogtreecommitdiff
path: root/hugo/libraries/engines/berkeleydb.lib.php
blob: 52f6280978d41e2114762bcab54a5196f941e295 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * @package PhpMyAdmin-Engines
 */
if (! defined('PHPMYADMIN')) {
    exit;
}

if (! defined('PHPMYADMIN')) {
    exit;
}

/**
 * Load BDB class.
 */
require_once './libraries/engines/bdb.lib.php';

/**
 * This is same as BDB
 *
 * @package PhpMyAdmin-Engines
 */
class PMA_StorageEngine_berkeleydb extends PMA_StorageEngine_bdb
{
}

?>