Skip to content
Snippets Groups Projects
Commit b4403db2 authored by André Lahmann's avatar André Lahmann
Browse files

refs #8488:

* fix for undefined index notice upon failed password change
parent 850a3178
Branches
Tags
No related merge requests found
...@@ -351,7 +351,9 @@ class PAIA extends DAIA ...@@ -351,7 +351,9 @@ class PAIA extends DAIA
isset($array_response['error_description']) isset($array_response['error_description'])
? $array_response['error_description'] : ' ' ? $array_response['error_description'] : ' '
]; ];
} elseif ($array_response['patron'] === $post_data['patron']) { } elseif (isset($array_response['patron'])
&& $array_response['patron'] === $post_data['patron']
) {
// on success patron_id is returned // on success patron_id is returned
$details = [ $details = [
'success' => true, 'success' => true,
......
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