Skip to content

Commit 05f8555

Browse files
committed
fix xtrange errors when using admin interface by the helper login funtion
* seems the login helper class receive an array with user/password but not detected * corroborate if are an array anthe then acept any type, detect user and password * now app does not make errors in OC but still login infor dissaper when settings are changes
1 parent 79fa1a9 commit 05f8555

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

roundcube/src/main/php/lib/RoundCubeAuthHelper.class.php

+15-4
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public static function jsLoadHook($params)
4747
* @param $params userdata
4848
* @return true if login was succesfull otherwise false
4949
*/
50-
public static function login($params)
50+
public static function login($params, $optionalparams = null)
5151
{
5252
$via = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';
5353
if (preg_match('#(/ocs/v1.php|'.
@@ -58,9 +58,20 @@ public static function login($params)
5858
}
5959
OCP\App::checkAppEnabled('roundcube');
6060
try {
61-
$username = $params['uid'];
62-
$password = $params['password'];
63-
61+
if (is_array($params) )
62+
{
63+
$username = $params['uid'];
64+
if (array_key_exists('password', $params))
65+
$password = $params['password'];
66+
else
67+
$password = $optionalparams;
68+
}
69+
else
70+
{
71+
$username = $params;
72+
$password = $optionalparams;
73+
}
74+
// TODO : here are an error when admin change settings.. roundcube logout and then can login..
6475
OCP\Util::writeLog('roundcube', 'OC_RoundCube_AuthHelper.class.php->login(): Preparing login of roundcube user "' . $username . '"', OCP\Util::DEBUG);
6576

6677
$maildir = OCP\Config::getAppValue('roundcube', 'maildir', '');

0 commit comments

Comments
 (0)