diff --git a/Compile-Adminer-with-Plugin(s)-and-Design.md b/Compile-Adminer-with-Plugin(s)-and-Design.md index dec4261..0a784c9 100644 --- a/Compile-Adminer-with-Plugin(s)-and-Design.md +++ b/Compile-Adminer-with-Plugin(s)-and-Design.md @@ -13,12 +13,12 @@ The [`compile.sh`](https://github.com/FrancoisCapon/LoginToASqlite3DatabaseWitho ```bash echo -e "\n$step. Load plugin's sources:\n" ((step+=1)) -wget -P adminer/plugins/ https://raw.githubusercontent.com/.../master/plugin.php +wget -P adminer/plugins/ https://raw.githubusercontent.com/.../master/the-plugin.php echo -e "\n$step. Adding the plugin to the sources\n" ((step+=1)) cat << "EOPHP" >> adminer/adminer/include/bootstrap.inc.php include "../plugins/plugin.php"; -include "../plugins/fc-sqlite-connection-without-credentials.php"; +include "../plugins/the-plugin.php"; function adminer_object() { $plugins = array(new FCSqliteConnectionWithoutCredentials()); return new AdminerPlugin($plugins);