Commit 62b04fb5 authored by Côme Bernigaud's avatar Côme Bernigaud Committed by Benoit Mortier
Browse files

Fixes #3287 Fixed missing $lang in global import in displayLogin

Showing with 1 addition and 1 deletion
+1 -1
...@@ -31,7 +31,7 @@ header("Content-type: text/html; charset=UTF-8"); ...@@ -31,7 +31,7 @@ header("Content-type: text/html; charset=UTF-8");
/* Display the login page and exit() */ /* Display the login page and exit() */
function displayLogin() function displayLogin()
{ {
global $smarty,$message,$config,$ssl,$error_collector,$error_collector_mailto; global $smarty,$message,$config,$ssl,$error_collector,$error_collector_mailto,$lang;
error_reporting(E_ALL | E_STRICT); error_reporting(E_ALL | E_STRICT);
/* Fill template with required values */ /* Fill template with required values */
$username = ""; $username = "";
......
  • bmortier @bmortier

    mentioned in issue #1100 (closed)

    By FormidableInc on 2017-09-02T15:12:40 (imported from GitLab)

    ·

    mentioned in issue #1100 (closed)

    By FormidableInc on 2017-09-02T15:12:40 (imported from GitLab)

    Toggle commit list
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment