Skip to content

Commit 41d93b3

Browse files
committed
misc updates
1 parent 8e7c572 commit 41d93b3

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

code/web/Drivers/Evergreen.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -1470,8 +1470,9 @@ public function patronLogin($username, $password, $validatedViaSSO) {
14701470
$userData = $this->fetchSession($session['authToken']);
14711471
if ($userData != null) {
14721472
$user = $this->loadPatronInformation($userData, $username, $password);
1473-
1474-
$user->password = $password;
1473+
if ($user != null) {
1474+
$user->password = $password;
1475+
}
14751476

14761477
return $user;
14771478
} else {

code/web/interface/themes/responsive/RBdigitalMagazine/placeholder.txt

Whitespace-only changes.

code/web/release_notes/24.03.01.MD

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,18 @@
55
### Event Updates
66
- Correct handling null descriptions in Library Market events. (*MDN*)
77

8+
### Evergreen Updates
9+
- Handle null objets during login. (*MDN*)
10+
811
### Sierra Updates
912
- Check for null value when loading format. (*MDN*)
1013

1114
### Other Updates
1215
- Correct "Visit Website" link on Custom Pages when the location uses "default" for the home link. (Ticket 129155) (*MDN*)
1316
- Additional error checking when loading browse categories for LiDA. (*MDN*)
17+
- Correctly handle removed RBDigital Magazine content with a 410 error. (*MDN*)
1418

1519
## This release includes code contributions from
1620
- ByWater Solutions
17-
- Mark Noble (MDN)
21+
- Mark Noble (MDN)
22+
- Kirstien Kroeger (KK)

0 commit comments

Comments
 (0)