From b157ab27044c2140b7ef6a057109cd28fcdd6a7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Capon?= <46624375+FrancoisCapon@users.noreply.github.com> Date: Wed, 11 Nov 2020 14:57:07 +0100 Subject: [PATCH] Updated Compile Adminer with Plugin(s) and Design (markdown) --- Compile-Adminer-with-Plugin(s)-and-Design.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);