1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-13 18:14:07 +02:00

Improve SQLite login error message

This commit is contained in:
Jakub Vrana
2017-03-01 11:23:20 +01:00
parent 40d1feec9f
commit 2d6451b99a
5 changed files with 5 additions and 6 deletions

View File

@@ -110,7 +110,7 @@ focus(document.getElementById('username'));
function login($login, $password) {
global $jush;
if ($jush == "sqlite") {
return lang('Implement %s method to use SQLite.', 'login()');
return lang('<a href="https://www.adminer.org/en/extension/" target="_blank">Implement</a> %s method to use SQLite.', '<code>login()</code>');
}
return true;
}