Remove .inc extension from driver plugins

This commit is contained in:
Jakub Vrana 2021-02-10 11:43:56 +01:00
parent 29e2475b5a
commit 3882bfaac1
5 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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
}