You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This line leads to invalid HTML for some documents (for example for /edsapi/rest/Retrieve?an=T115986&dbid=dmp) because of double decoding of HTML content (&lt; becomes < inside HTML body).
Looks like there is no reason to decode HTML content here - it is already decoded inside SimpleXML object. The only thing left to decode is the content of the <ephtml> tags which is double encoded.
So, this line should probably be something like this:
edsapi-php-sample/rest/EBSCOResponse.php
Line 1115 in b3e5f32
This line leads to invalid HTML for some documents (for example for
/edsapi/rest/Retrieve?an=T115986&dbid=dmp
) because of double decoding of HTML content (&lt;
becomes<
inside HTML body).Looks like there is no reason to decode HTML content here - it is already decoded inside
SimpleXML
object. The only thing left to decode is the content of the<ephtml>
tags which is double encoded.So, this line should probably be something like this:
The text was updated successfully, but these errors were encountered: