Remove .inc extension from driver plugins
This commit is contained in:
parent
29e2475b5a
commit
3882bfaac1
5 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ function adminer_object() {
|
|||
}
|
||||
|
||||
// enable extra drivers just by including them
|
||||
//~ include "../plugins/drivers/simpledb.inc.php";
|
||||
//~ include "../plugins/drivers/simpledb.php";
|
||||
|
||||
$plugins = array(
|
||||
// specify enabled plugins here
|
||||
|
|
|
@ -2,7 +2,7 @@ Enable drivers in this directory like this:
|
|||
|
||||
<?php
|
||||
function adminer_object() {
|
||||
include "./plugins/drivers/simpledb.inc.php"; // the driver is enabled just by including
|
||||
include "./plugins/drivers/simpledb.php"; // the driver is enabled just by including
|
||||
return new Adminer; // or return AdminerPlugin if you want to use other plugins
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue