You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2018/05/02 16:49:45 UTC

[myfaces-tobago] 01/02: TOBAGO-1896: 2nd AJAX will fail with JSF 2.3: IllegalArgumentException: Illegal base64 character a

This is an automated email from the ASF dual-hosted git repository.

lofwyr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit 98294c6ebd11f1ef5e7d0cf523884a72b95966b8
Author: Udo Schnurpfeil <lo...@apache.org>
AuthorDate: Wed May 2 18:46:38 2018 +0200

    TOBAGO-1896: 2nd AJAX will fail with JSF 2.3: IllegalArgumentException: Illegal base64 character a
---
 .../tobago/standard/tobago-bootstrap/_version/js/tobago-jsf.js          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tobago-theme/tobago-theme-standard/src/main/resources/META-INF/resources/tobago/standard/tobago-bootstrap/_version/js/tobago-jsf.js b/tobago-theme/tobago-theme-standard/src/main/resources/META-INF/resources/tobago/standard/tobago-bootstrap/_version/js/tobago-jsf.js
index 79d47f4..9e0887a 100644
--- a/tobago-theme/tobago-theme-standard/src/main/resources/META-INF/resources/tobago/standard/tobago-bootstrap/_version/js/tobago-jsf.js
+++ b/tobago-theme/tobago-theme-standard/src/main/resources/META-INF/resources/tobago/standard/tobago-bootstrap/_version/js/tobago-jsf.js
@@ -7602,7 +7602,7 @@ _MF_SINGLTN(_PFX_XHR + "_AjaxResponse", _MF_OBJECT, /** @lends myfaces._impl.xhr
                     document.forms[mfInternal["_mfSourceFormId"]] : ((elemId) ? fuzzyFormDetection(elemId) : null);
 
             if(node.getAttribute('id').indexOf(this.P_VIEWSTATE) != -1) {
-                mfInternal.appliedViewState = this._Dom.concatCDATABlocks(node);//node.firstChild.nodeValue;
+                mfInternal.appliedViewState = _Lang.trim(this._Dom.concatCDATABlocks(node));//node.firstChild.nodeValue;
             } else if(node.getAttribute('id').indexOf(this.P_CLIENTWINDOW) != -1) {
                 mfInternal.appliedClientWindow = node.firstChild.nodeValue;
             }

-- 
To stop receiving notification emails like this one, please contact
lofwyr@apache.org.