Skip to content

Commit

Permalink
do not use != to compare strings
Browse files Browse the repository at this point in the history
  • Loading branch information
saschaszott committed Nov 14, 2023
1 parent ac3d02e commit e460183
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dspace/config/emails/subscriptions_content
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
#set($subject = "${config.get('dspace.name')} Subscriptions")
This email is sent from ${config.get('dspace.name')} based on the chosen subscription preferences.

#if ("$params[0]" != "")
#if( not( "$params[0]" == "" ))
Community Subscriptions:
------------------------
List of changed items : ${params[0]}

#end
#if ("$params[1]" != "")
#if( not( "$params[1]" == "" ))
Collection Subscriptions:
-------------------------
List of changed items : ${params[1]}
Expand Down

0 comments on commit e460183

Please sign in to comment.