Skip to content
Snippets Groups Projects

Fixes #17075 - restClient getContent

Merged Carsten Rose requested to merge B17075restClient_get_content into develop
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -104,10 +104,10 @@ class RestClient {
throw new \UserReportException("Missing RestClient target", ERROR_MISSING_VALUE);
}
$param[TOKEN_L_CONTENT] = trim($param[TOKEN_L_CONTENT]) ?? '';
$param[TOKEN_L_CONTENT] = trim($param[TOKEN_L_CONTENT] ?? '');
if (!empty($param[TOKEN_L_CONTENT_FILE])) {
$param[TOKEN_L_CONTENT_FILE] = trim($param[TOKEN_L_CONTENT_FILE]) ?? '';
$param[TOKEN_L_CONTENT_FILE] = trim($param[TOKEN_L_CONTENT_FILE]);
}
if (!empty($param[TOKEN_L_HEADER])) {
Loading