Add comments
This commit is contained in:
parent
dcadbe3487
commit
9e930e1c26
1 changed files with 5 additions and 1 deletions
|
@ -27,6 +27,10 @@ if (!isset($_GET['cp'])) {
|
||||||
}
|
}
|
||||||
|
|
||||||
$submittedLang = isset($_GET['lg']) ? $_GET['lg'] : 'unknown';
|
$submittedLang = isset($_GET['lg']) ? $_GET['lg'] : 'unknown';
|
||||||
|
/**
|
||||||
|
* $DisplayDbg is used in login_translations.php
|
||||||
|
* @todo Make sure this is the best place to do it.
|
||||||
|
*/
|
||||||
if (isset($_GET['dbg']) && ($_GET['dbg'] == 1)) {
|
if (isset($_GET['dbg']) && ($_GET['dbg'] == 1)) {
|
||||||
$DisplayDbg = true;
|
$DisplayDbg = true;
|
||||||
}
|
}
|
||||||
|
@ -133,7 +137,7 @@ function err_callback($errno, $errmsg, $filename, $linenum, $vars)
|
||||||
/**
|
/**
|
||||||
* @param string $login
|
* @param string $login
|
||||||
* The user login.
|
* The user login.
|
||||||
* @TODO: This should become the password.
|
* @todo: This should become the password.
|
||||||
* @param string $password
|
* @param string $password
|
||||||
* The user's password.
|
* The user's password.
|
||||||
* @param string $clientApplication
|
* @param string $clientApplication
|
||||||
|
|
Loading…
Reference in a new issue